Click here to Skip to main content
15,914,447 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Porting ASP / Accessdb app from one VM env to another Pin
6fingers18-Apr-15 4:49
6fingers18-Apr-15 4:49 
GeneralRe: Porting ASP / Accessdb app from one VM env to another Pin
jkirkerx19-Apr-15 9:26
professionaljkirkerx19-Apr-15 9:26 
QuestionGridView Looping Pin
Member 1024160513-Apr-15 2:16
Member 1024160513-Apr-15 2:16 
QuestionRe: GridView Looping Pin
ZurdoDev15-Apr-15 3:32
professionalZurdoDev15-Apr-15 3:32 
AnswerRe: GridView Looping Pin
User 418025410-Jul-15 11:24
User 418025410-Jul-15 11:24 
QuestionWhere is WAT? Pin
echoCon11-Apr-15 9:55
echoCon11-Apr-15 9:55 
QuestionRe: Where is WAT? Pin
ZurdoDev15-Apr-15 3:32
professionalZurdoDev15-Apr-15 3:32 
AnswerRe: Where is WAT? Pin
Richard Deeming15-Apr-15 8:07
mveRichard Deeming15-Apr-15 8:07 
AnswerRe: Where is WAT? Pin
echoCon19-Apr-15 19:59
echoCon19-Apr-15 19:59 
QuestionRe: Where is WAT? Pin
ZurdoDev20-Apr-15 1:28
professionalZurdoDev20-Apr-15 1:28 
Questionwhere is identity and access tool? Pin
echoCon11-Apr-15 9:51
echoCon11-Apr-15 9:51 
AnswerRe: where is identity and access tool? Pin
Afzaal Ahmad Zeeshan11-Apr-15 19:38
professionalAfzaal Ahmad Zeeshan11-Apr-15 19:38 
Questionwhy is media player control inactive? Pin
echoCon11-Apr-15 9:47
echoCon11-Apr-15 9:47 
AnswerRe: why is media player control inactive? Pin
Saravanan_babu21-Apr-15 19:29
Saravanan_babu21-Apr-15 19:29 
GeneralRe: why is media player control inactive? Pin
echoCon22-Apr-15 7:53
echoCon22-Apr-15 7:53 
QuestionConnect Console with ASP.NET Pin
Member 1110549010-Apr-15 20:22
Member 1110549010-Apr-15 20:22 
AnswerRe: Connect Console with ASP.NET Pin
Abhinav S10-Apr-15 20:55
Abhinav S10-Apr-15 20:55 
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>

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.