Click here to Skip to main content
15,895,084 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: error: 'Argument 'SourceArray' cannot be converted to type 'String' ' Pin
byka11-Jun-13 4:03
byka11-Jun-13 4:03 
GeneralRe: error: 'Argument 'SourceArray' cannot be converted to type 'String' ' Pin
Richard Deeming11-Jun-13 4:17
mveRichard Deeming11-Jun-13 4:17 
GeneralRe: error: 'Argument 'SourceArray' cannot be converted to type 'String' ' Pin
byka11-Jun-13 4:47
byka11-Jun-13 4:47 
GeneralRe: error: 'Argument 'SourceArray' cannot be converted to type 'String' ' Pin
Richard Deeming11-Jun-13 5:03
mveRichard Deeming11-Jun-13 5:03 
QuestionUncaught TypeError: Cannot read property 'id' of undefined Pin
Vimalsoft(Pty) Ltd10-Jun-13 8:40
professionalVimalsoft(Pty) Ltd10-Jun-13 8:40 
QuestionHow to populate data in child page using json & master pages Pin
Rohit_daga9-Jun-13 20:11
Rohit_daga9-Jun-13 20:11 
AnswerRe: How to populate data in child page using json & master pages Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)10-Jun-13 6:09
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)10-Jun-13 6:09 
Questionjquery problem Pin
dasam9-Jun-13 19:33
dasam9-Jun-13 19:33 
am using jquery pop up window in my project...


in this am displaying grid am do paging for this if i click the paging feature that pop will hiding... againe i have to click the pop up.. hiw can i stay back that pop up please give me sugition for this...

/* popup_box DIV-Styles*/
#popup_box
{
display: none; /* Hide the DIV */
position: fixed;
_position: absolute; /* hack for internet explorer 6 */
height: 430px;
width: 470px;
background: #FFFFFF;
left: 350px;
top: 190px;
z-index: 100; /* Layering ( on-top of others), if you have lots of layers: I just maximized, you can change it yourself */
margin-left: 15px; /* additional features, can be omitted */
border: 2px solid #6DA351;
padding: 15px;
font-size: 15px;
-moz-box-shadow: 0 0 5px #3669A9;
-webkit-box-shadow: 0 0 5px #3669A9;
box-shadow: 0 0 5px #6DA351;
}
#popup_box1
{
display: none; /* Hide the DIV */
position: fixed;
_position: absolute; /* hack for internet explorer 6 */
height: 430px;
width: 470px;
background: #FFFFFF;
left: 350px;
top: 190px;
z-index: 100; /* Layering ( on-top of others), if you have lots of layers: I just maximized, you can change it yourself */
margin-left: 15px; /* additional features, can be omitted */
border: 2px solid #3669A9;
padding: 15px;
font-size: 15px;
-moz-box-shadow: 0 0 5px #6DA351;
-webkit-box-shadow: 0 0 5px #6DA351;
box-shadow: 0 0 5px #6DA351;
}

#container
{
background: #d2d2d2; /*Sample*/
width: 100%;
height: 100%;
}

a
{
cursor: pointer;
text-decoration: none;
}

/* This is for the positioning of the Close Link */
#popupBoxClose
{
font-size: 17px;
line-height: 15px;
right: 5px;
top: 5px;
position: absolute;
color: #6fa5e2;
font-weight: 500;
}
#popupBoxClose1
{
font-size: 17px;
line-height: 15px;
right: 5px;
top: 5px;
position: absolute;
color: #6fa5e2;
font-weight: 500;
}
.popup_box .x
{
font-size: 17px;
line-height: 15px;
right: 5px;
top: 5px;
position: absolute;
color: #6fa5e2;
font-weight: 500;
}
.popup_box .x:hover
{
cursor: pointer;
}

<script type="text/javascript">
$(document).ready(function () {
$('#Moredetails').click(function () {
//alert("haiiii");
// When site loaded, load the Popupbox First
loadPopupBox();
$('#popupBoxClose1').click(function () {
unloadPopupBox();
});

$('#container').click(function () {
unloadPopupBox();
});

function unloadPopupBox() { // TO Unload the Popupbox
$('#popup_box1').fadeOut("slow");
$("#container").css({ // this is just for style
"opacity": "1"
});
}

function loadPopupBox() { // To Load the Popupbox
$('#popup_box1').fadeIn("slow");
$("#container").css({ // this is just for style
"opacity": "0.3"
});
}
});
});
</script>

code like this
AnswerRe: jquery problem Pin
Blikkies10-Jun-13 2:45
professionalBlikkies10-Jun-13 2:45 
QuestionAnimation not working in ModalPopupExtender. Anyone knows how to fix it? Pin
Pham Dinh Truong9-Jun-13 5:03
professionalPham Dinh Truong9-Jun-13 5:03 
QuestionGet Loggedin Domain\Username Pin
raesark7-Jun-13 2:11
raesark7-Jun-13 2:11 
AnswerRe: Get Loggedin Domain\Username Pin
Richard Deeming7-Jun-13 2:20
mveRichard Deeming7-Jun-13 2:20 
GeneralRe: Get Loggedin Domain\Username Pin
raesark7-Jun-13 2:24
raesark7-Jun-13 2:24 
GeneralRe: Get Loggedin Domain\Username Pin
Richard Deeming7-Jun-13 2:45
mveRichard Deeming7-Jun-13 2:45 
GeneralRe: Get Loggedin Domain\Username Pin
raesark7-Jun-13 3:46
raesark7-Jun-13 3:46 
GeneralRe: Get Loggedin Domain\Username Pin
Richard Deeming7-Jun-13 3:52
mveRichard Deeming7-Jun-13 3:52 
GeneralRe: Get Loggedin Domain\Username Pin
V R Shukla10-Jun-13 1:35
V R Shukla10-Jun-13 1:35 
GeneralRe: Get Loggedin Domain\Username Pin
raesark11-Jun-13 20:18
raesark11-Jun-13 20:18 
AnswerRe: Get Loggedin Domain\Username Pin
jkirkerx8-Jun-13 8:27
professionaljkirkerx8-Jun-13 8:27 
GeneralRe: Get Loggedin Domain\Username Pin
raesark11-Jun-13 20:20
raesark11-Jun-13 20:20 
GeneralRe: Get Loggedin Domain\Username Pin
jkirkerx12-Jun-13 6:46
professionaljkirkerx12-Jun-13 6:46 
QuestionDrop Down Listnot updating when item deleted from GridView Pin
WickedFooker6-Jun-13 4:59
WickedFooker6-Jun-13 4:59 
AnswerRe: Drop Down Listnot updating when item deleted from GridView Pin
WickedFooker7-Jun-13 3:08
WickedFooker7-Jun-13 3:08 
QuestionGrid View Pin
Kaushik.Subramanian6-Jun-13 3:22
Kaushik.Subramanian6-Jun-13 3:22 
AnswerRe: Grid View Pin
Richard MacCutchan6-Jun-13 4:41
mveRichard MacCutchan6-Jun-13 4:41 

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.