No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
18 Posted Topics
I have a tab structured view which consists of 5 different tabs. the content in all the 5 tabs were same, So i have reused the code and rendered the same code multiple times using knockout js. the problem here is that I have a datepicker control too. As the … | |
I have a problem with the file upload control in MVC. My DOM element looks like @Html.TextBoxFor(m => m.logo, new { id = "logoUpload", type = "file", @accept = "image/*", @onchange = "showpreview(this);" }) onChange event looks like function showpreview(input) { if (input.files && input.files[0]) { var logo = $('#logoUpload')[0].value; … | |
I'm new to mobile development. I'm using html5,php,cordova,phonegap for the development of mobile application. I have done everything which i need.But i need to populate the dropdowns dynamically based on the previous dropdown selection. i.e., Based on the state the cities to be populated and based on the cities the … | |
Disabled or ReadOnly input field shows Stop symbol when mouse overs on it.How to get out of this problem.The look doesn't satisfied. Please help me how to show only cursor symbol when mouse overs on any disabled or read only input fields. | |
Hi., I'm new to php using yii framework.The radiobuttons in the radio buttonlist are not displayed in IE9 and above.The code written is as follows. The radio buttons are displayed well in all the remaining browsers and also below IE-9(even not in IE-9). how to resolve this issue. <div class="services_opts"> … | |
I have 8 ajax tabcontainers in my page.On the top of the page I have one button "Collapse All".When I click on the button all the tabcontainers should be collapsed. Please help me how to achieve this functionality. | |
I have one page with ajax tab container and the content of the tabcontainer should be place in different pages.For this i have used the following code <asp:Tabcontainer ID="Tabcontainer1" runat="server" AutoPostBack="true" OnActiveTabChanged="tabChanged"> <asp:TabPanel ID="panel1" runat="server" HeaderText="Panel1" > <ContentTemplate> <asp:ContentPlaceHolder ID="Panel1content" runat="server" > </asp:ContentPlaceHolder> </ContentTemplate> </asp:TabPanel> <asp:TabPanel ID="Panel2" runat="server" HeaderText="Panel2"> <ContentTemplate> … | |
Re: you can create the button with text and set image as the background for the button and apply some styles to the button inorder to display correctly. Example: Button btn1 = new Button(); btn1.Text = "sample"; btn1.Style.Add("background-image", "url(images/sample.gif)"); btn1.CssClass = "imgbutton"; css class: .imgbutton { cursor:pointer; background-repeat:no-repeat; background-position:left; padding-left:30px; } | |
Re: You should use distinct keyword for employee name in the stored procedure itself. then from the result you can easily bind the data to your dropdown For example: select Distinct([Employee].Name) from [Employee] <%--Use this line in your stored procedure --%> then for binding to your dropdown you can use like … | |
The page previously fires the event from the server side.When the new design is applied to the site the server side events are not firing.What may be the problem.Got struck from 2 days.Please help me in solving the issue. Thanks In Advance, Sushmaja Arumalla | |
I have to generate the mail to their mail address specified at the time of the registration to specify the username and password. So i tried the following code to send email but the email is not generated showing me either "Failure sending mail" or "Connection timed out". So please … | |
Re: It is better to use the "dropdownlist.selected" attribute in the backend at page_Load event to the particular value which you want it to be selected. | |
Re: For this type of population it is better to use the cascadingdropdownlist using ajax control tool kit | |
Re: Allow paging attribute does not reflect any type of errors in the result. The error might done some where.Check it once again | |
How to use commandName in hyperlink control similar to Link button for some backend process. I want Text of Hyperlink Which is clicked From a group of Hyperlinks to identify which hyperlink is clicked and based on it some backend code should be executed.How to retrieve the Text of Hyperlink … | |
Re: Youi should provide proper css for all the buttons either they are fixed or floating. First check it out otherwise post related code here... | |
I have a simple imagebutton in Visual Studio 2010 / c# / .NET framework 4.0: asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/mypic.jpg" Width="400px" IE10 / Windows 8 shows the picture in the original size (width 200 px) and ignores the specified width (400 px). All other browsers behave as expected, but IE 10 … | |
Re: Save the last entered record registration no in any of hidden field or viewstate. Then By using hidden field or viewstate information retrive data from database and allow to print. |