Click here to Skip to main content
15,884,388 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Connect Console with ASP.NET Pin
Member 1110549010-Apr-15 23:43
Member 1110549010-Apr-15 23:43 
QuestionMenu Control Pin
BobbyStrain10-Apr-15 9:35
BobbyStrain10-Apr-15 9:35 
AnswerRe: Menu Control Pin
User 418025410-Jul-15 11:26
User 418025410-Jul-15 11:26 
QuestionHow to implement a service "beside" my web-site Pin
Frygreen10-Apr-15 7:42
Frygreen10-Apr-15 7:42 
QuestionRe: How to implement a service "beside" my web-site Pin
ZurdoDev15-Apr-15 3:34
professionalZurdoDev15-Apr-15 3:34 
AnswerRe: How to implement a service "beside" my web-site Pin
Frygreen15-Apr-15 6:33
Frygreen15-Apr-15 6:33 
QuestionRe: How to implement a service "beside" my web-site Pin
ZurdoDev15-Apr-15 6:35
professionalZurdoDev15-Apr-15 6:35 
QuestionTelerik MVC Pin
Susil Ku Padhi10-Apr-15 2:45
Susil Ku Padhi10-Apr-15 2:45 
Here i am explaining the problem that i encounter during my project. I have a project of MVC4 in that i am using Telerik controls(not kendo & not rad). The Scenario is like this,
"I have a Telerik grid in that i am showing 20 records, in this grid i have an edit button at the end of each record. When i am clicking on edit button it shows a Telerik popUp window(which is a partial view) in that window i have used one collapsible control,
first time when i click on edit button it shows the popup window at center of the screen but when i am expanding the collapsible the window goes to bottom of the screen.

here is my popup window code:
C#
function showEditLookup(CustomerId) {

<pre>
    addCustomerLookup = $.telerik.window.create({
        title: &#39;Edit Company&#39;,
        resizable: false,
        modal: true,
        height: 553.6,
        width: 600,
        contentUrl: &#39;/BD/ShowEditCustomerWindow?CustomerId=&#39; + CustomerId,
        onClose: function () {
            removeJqueryValidationMsg();
            $(this).remove();
        }
    });
    var win = addCustomerLookup.data(&#39;tWindow&#39;);
    win.center().open();
}</pre>

Here is My collapsible control Code:
<tr>
            <td colspan="2">
                <div class="notPrint">
                    <a class="t-icon t-plus" href="#" id="img_MoreInfo" title="More Info"/>
                    <b style="font-size:14px;">More Info</b>
                </div>
                <table style="width:100%; display:none;" class="i-info-tbl"  id="tblMoreInfo"><br />
                    <tr>
                        <td>FollowUp Date 
                        </td>
                        <td>
                            @Html.TextBoxFor(model => model.Followupdate, new { @class = "DynamicDatePicker",style = "width:120px;"})
                        </td>
                    </tr>
                    <tr>
                        <td>Note
                        </td>
                        <td>
                            @Html.TextAreaFor(model => model.Note, new { style = "width:225px;" })
                        </td>
                    </tr>
                    <tr>
                        <td>Account Strategy
                        </td>
                        <td>
                            @Html.TextAreaFor(model => model.AccountStrategy, 5, 80, new { style = "width:225px;" })
                        </td>
                    </tr>
                    <tr>
                        <td>Decision Making Process
                        </td>
                        <td>
                            @Html.TextAreaFor(model => model.DecisionMakingProcess, 5, 80, new { style = "width:225px;" })
                        </td>
                    </tr> 
                </table>

<pre>
    </pre>

QuestionGoogle map server control Problem Pin
ali_heidari_9-Apr-15 11:55
ali_heidari_9-Apr-15 11:55 
SuggestionRe: Google map server control Problem Pin
ZurdoDev15-Apr-15 3:34
professionalZurdoDev15-Apr-15 3:34 
GeneralRe: Google map server control Problem Pin
ali_heidari_15-Apr-15 18:52
ali_heidari_15-Apr-15 18:52 
QuestionDelete repeater marked items Pin
Otekpo Emmanuel7-Apr-15 1:32
Otekpo Emmanuel7-Apr-15 1:32 
AnswerRe: Delete repeater marked items Pin
Blikkies10-Apr-15 3:18
professionalBlikkies10-Apr-15 3:18 
Questiondate picker textbox in asp.net Pin
Praveen Kandari6-Apr-15 1:52
Praveen Kandari6-Apr-15 1:52 
AnswerRe: date picker textbox in asp.net Pin
Peter Leow6-Apr-15 2:02
professionalPeter Leow6-Apr-15 2:02 
AnswerRe: date picker textbox in asp.net Pin
RajeeshMenoth6-Apr-15 2:45
professionalRajeeshMenoth6-Apr-15 2:45 
GeneralRe: date picker textbox in asp.net Pin
Richard MacCutchan6-Apr-15 8:09
mveRichard MacCutchan6-Apr-15 8:09 
AnswerRe: date picker textbox in asp.net Pin
RajeeshMenoth6-Apr-15 2:51
professionalRajeeshMenoth6-Apr-15 2:51 
Questiondatepicker textbox in asp.net Pin
Praveen Kandari6-Apr-15 1:46
Praveen Kandari6-Apr-15 1:46 
AnswerRe: datepicker textbox in asp.net Pin
wikizhao19-Apr-15 23:14
wikizhao19-Apr-15 23:14 
QuestionSession Automatically Expires After 55 to 60 Seconds In ASP.NET MVC With WEB API Pin
Member 115756782-Apr-15 1:17
Member 115756782-Apr-15 1:17 
AnswerRe: Session Automatically Expires After 55 to 60 Seconds In ASP.NET MVC With WEB API Pin
Vasudevan Deepak Kumar2-Apr-15 22:57
Vasudevan Deepak Kumar2-Apr-15 22:57 
AnswerRe: Session Automatically Expires After 55 to 60 Seconds In ASP.NET MVC With WEB API Pin
jkirkerx3-Apr-15 7:05
professionaljkirkerx3-Apr-15 7:05 
AnswerRe: Session Automatically Expires After 55 to 60 Seconds In ASP.NET MVC With WEB API Pin
Member 115596118-Apr-15 18:30
Member 115596118-Apr-15 18:30 
QuestionSetting Textbox value using JQuery Pin
indian1431-Apr-15 12:10
indian1431-Apr-15 12:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.