Click here to Skip to main content
15,881,559 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Trigger in asp.net Pin
Tech Code Freak26-Sep-11 5:03
Tech Code Freak26-Sep-11 5:03 
GeneralRe: Trigger in asp.net Pin
sheemap26-Sep-11 5:35
sheemap26-Sep-11 5:35 
AnswerRe: Trigger in asp.net Pin
Pravin Patil, Mumbai26-Sep-11 1:47
Pravin Patil, Mumbai26-Sep-11 1:47 
GeneralRe: Trigger in asp.net Pin
sheemap26-Sep-11 1:56
sheemap26-Sep-11 1:56 
AnswerRe: Trigger in asp.net Pin
Pravin Patil, Mumbai26-Sep-11 18:42
Pravin Patil, Mumbai26-Sep-11 18:42 
AnswerRe: Trigger in asp.net Pin
NikulDarji27-Sep-11 0:41
NikulDarji27-Sep-11 0:41 
QuestionAutoCompleteExtender inside ModalPopupExtender Pin
PleaseHelpCP23-Sep-11 19:08
PleaseHelpCP23-Sep-11 19:08 
AnswerRe: AutoCompleteExtender inside ModalPopupExtender Pin
Ali Al Omairi(Abu AlHassan)25-Sep-11 20:50
professionalAli Al Omairi(Abu AlHassan)25-Sep-11 20:50 
The auto complete list of the AutoCompleteExtender won't appear because it has a z-index value less than the modal popup for the ModalPopupExtender. You can fix this by setting the value of the z-index to a greater value just when the list is shown.

XML
<ajax:AutoCompleteExtender ID="ace" runat="server" OnClientShown="ShowOptions">
</ajax:AutoCompleteExtender>

<script language="javascript" type="text/javascript">
    function ShowOptions(sentder, args) {
        sender._completionListElement.style.zIndex = 10003; // or greater than modal popup
    }
</script>

Help people,so poeple can help you.

QuestionDropDownList Pin
reyhane ramezanian23-Sep-11 6:02
reyhane ramezanian23-Sep-11 6:02 
AnswerRe: DropDownList Pin
TheGreatAndPowerfulOz23-Sep-11 6:24
TheGreatAndPowerfulOz23-Sep-11 6:24 
AnswerRe: DropDownList Pin
Dalek Dave25-Sep-11 21:40
professionalDalek Dave25-Sep-11 21:40 
JokeRe: DropDownList Pin
Pravin Patil, Mumbai26-Sep-11 1:51
Pravin Patil, Mumbai26-Sep-11 1:51 
QuestionCreating a new Website Solution by using http doesn't work Pin
nstk23-Sep-11 0:57
nstk23-Sep-11 0:57 
QuestionOn data binding EntityObjects to a FormView. Pin
Brady Kelly22-Sep-11 22:46
Brady Kelly22-Sep-11 22:46 
Questionformat a string in Data Repeater (list array as a data source) Pin
Farhad Eft22-Sep-11 20:25
Farhad Eft22-Sep-11 20:25 
AnswerRe: format a string in Data Repeater (list array as a data source) Pin
Parwej Ahamad22-Sep-11 23:20
professionalParwej Ahamad22-Sep-11 23:20 
GeneralRe: format a string in Data Repeater (list array as a data source) Pin
Farhad Eft22-Sep-11 23:37
Farhad Eft22-Sep-11 23:37 
GeneralRe: format a string in Data Repeater (list array as a data source) Pin
Parwej Ahamad22-Sep-11 23:41
professionalParwej Ahamad22-Sep-11 23:41 
QuestionIssue with modalpopup on master page. Pin
shock58922-Sep-11 19:23
shock58922-Sep-11 19:23 
AnswerRe: Issue with modalpopup on master page. Pin
Parwej Ahamad22-Sep-11 23:24
professionalParwej Ahamad22-Sep-11 23:24 
AnswerRe: Issue with modalpopup on master page. Pin
jagdish Bhandari23-Sep-11 1:16
jagdish Bhandari23-Sep-11 1:16 
QuestionExport dataset to Excel Pin
countmein22-Sep-11 12:10
countmein22-Sep-11 12:10 
AnswerRe: Export dataset to Excel Pin
uspatel23-Sep-11 2:47
professionaluspatel23-Sep-11 2:47 
GeneralRe: Export dataset to Excel Pin
countmein23-Sep-11 4:01
countmein23-Sep-11 4:01 
QuestionASP.NET MVC3 Pin
eddieangel22-Sep-11 11:03
eddieangel22-Sep-11 11:03 

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.