-
Began Watching jQuery: Password Confirmation
Hello. I am rebuilding a registration page and the accompanying form. I am at a point of implementing jQuery for password validation. It will not validate nor does it give … -
Replied To a Post in jQuery: Password Confirmation
Why do you add two links to 'jquery.validate.min.js' and also setup .validate() two times? Just add the link one time and also call one time the .validate() method with all … -
Began Watching Dynamically created table rows disappearing on post-back
I have an asp table with 5 rows and a button that, when clicked by the user, adds an additional row to the table. The row contains 5 cells for … -
Replied To a Post in Dynamically created table rows disappearing on post-back
ASP.NET ViewState should take care of that for you. Just make sure that your page has `EnableViewState = true`. Some resources that can help you understand the issue: http://www.w3schools.com/aspnet/aspnet_viewstate.asp https://msdn.microsoft.com/en-us/library/ms972976.aspx … -
Replied To a Post in Script Manager
Are you using two accounts? Why? And I'm sorry man, but as Dave said, it's quite hard to understand what you want. Post more of your code to see if … -
Began Watching Script Manager
I need to ScriptManager.RegisterStartupScript(this, GetType(), "getTextValue()", "getTextValue();", true); this value in variable -
Replied To a Post in Script Manager
dbissu, if I undertand correcly, you want to use the returned value of 'getTextValue()' and use it to set one label on the codebehind? If that's it, you can't do … -
Began Watching Javascript not working in any browser
Help. I can't get javascript to work on my computer at all. I've tried both Internet Explorer and Firefox but I either get messages saying that I need to enable … -
Replied To a Post in Javascript not working in any browser
hpox, "does not work" is not a clear definition of a problem. Did you open the developer console? Does it show any errors? Only local page doesn't work or any … -
Began Watching Idea how to use Windows 8
Hello all, I am interested using Windows 8 but don't have any idea how to use this. Though I know how to use Windows 7 & XP as well. But … -
Replied To a Post in Idea how to use Windows 8
Windows 8 interface is basically the same as Windows 7 with a optinal additional "square tiles"(forgot how they're calling it after "Metro") interface for shortcuts and search(that I don't like … -
Began Watching how to add column to datagridview
I want to show only specify database table in datagridview.I had use dataGridView1.AutoGenerateColumns = false; but i don't know how to add the column.For example on of the column is … -
Replied To a Post in how to add column to datagridview
Hi Yuki. `DataGridView.Columns` is a collection that you can manipulate as you wish. There's a couple ways of doing it, one way to just add one more columns is: this.myDataGrid.Columns.Add(new … -
Replied To a Post in keeping Sortable order on refresh
piers, this return value based on negative/positive values are only for the JavaScript Array.sort method, is not from jQuery itself. And why does Array.sort works on a jQuery object? Well, … -
Replied To a Post in Prototypal Inheritance
Oh, I just started whatching and I'm loving it! -
Replied To a Post in How To Show Month of Events bydefault instead of current month in calendar?
You're welcome Manish, and hope that'll enjoy the forum. If you don't have any more questions regarding this issue, you can mark as solved. -
Replied To a Post in keeping Sortable order on refresh
I'm glad to know that it worked =) jQuery.sort(a, b) need us to define which one those come first. And we'll decide who comes first based on our stored indexes … -
Replied To a Post in Prototypal Inheritance
Sorry Dave, my bad, I was so sure of my explanation that I didn't test it =(. And I guess my explanation is false, because: var a = function() { … -
Began Watching How To Show Month of Events bydefault instead of current month in calendar?
I have database with columns event_date, subject and description in my mysql table. currently, I am using following code to show calendar to highlight dates on which event is scheduled … -
Replied To a Post in How To Show Month of Events bydefault instead of current month in calendar?
Hi Manish. You want to display only months that have events but you're not checking if the current month has events or not. You could do something very simple, that'll … -
Began Watching Memory Problem
Sir I using Gallery Slider from this link http://www.a2zwebhelp.com/jquery-auto-image-rotator It works fine but after sometime Google Chrome displays this error message Either Chrome ran out of memory of or the … -
Replied To a Post in Memory Problem
Hi tqmd1, what version of jquery and of cycle are you using? One thing that you can try it's to specify the size, like this: $('#slider1') .cycle({ fx: 'fade', //'scrollLeft,scrollDown,scrollRight,scrollUp',blindX, … -
Replied To a Post in remove portion of a string
You're welcome =) Just mark as solved if you don't have any other questions regarding this subject. -
Began Watching Prototypal Inheritance
I am tinkering with prototypal inheritance in JavaScript. I have the code below and I am trying to find out if there is a way of getting the code which … -
Replied To a Post in Prototypal Inheritance
I'm gonna jump in on this, seems fun! ^^ > I think the reason that alert(t.breathe === s.breathe); is false is because my Animal function does not return an Animal … -
Replied To a Post in keeping Sortable order on refresh
Hey, I think this should work for you: // Store the Ids order var current_order = { 'set_1' : 0, 'set_2' : 1 }; // If there's no previous order, … -
Replied To a Post in DaniWeb Icon
Ok... here it goes... but remember, I'm not a designer =) And the font ain't right. -
Replied To a Post in DaniWeb Icon
Oh Dave, I hand't see you there... alright! Gonna try some things and I'll be back with some options ^^ -
Revoked Solved Status for DaniWeb Icon
Hello hello. I'm remodeling my personal website, and I'd like to stack the links as flat icons, pretty much as facebook, linkedin and etc appears on here. So, instead of … -
Marked Solved Status for DaniWeb Icon
Hello hello. I'm remodeling my personal website, and I'd like to stack the links as flat icons, pretty much as facebook, linkedin and etc appears on here. So, instead of … -
Replied To a Post in DaniWeb Icon
Yeah, I know... but until you make a version of it with an square icon, I don't have much choice. Just kidding! =P I love the badges, but the thing … -
Created DaniWeb Icon
Hello hello. I'm remodeling my personal website, and I'd like to stack the links as flat icons, pretty much as facebook, linkedin and etc appears on here. So, instead of … -
Began Watching DaniWeb Icon
Hello hello. I'm remodeling my personal website, and I'd like to stack the links as flat icons, pretty much as facebook, linkedin and etc appears on here. So, instead of … -
Began Watching Most suitable Linux for server that only needs to receive (and process)data
I just couldn't fit all of it in the title, actual title is: **How to send and receive messages (data packets) between UI and the server. And what would be … -
Replied To a Post in Most suitable Linux for server that only needs to receive (and process)data
Hi Rik. Do you want just an website that will be consumed by a browser or do you want to build your own client as well? When browsing the web, … -
Replied To a Post in class struct or interface method must have a return type
Oh, ok. Should be like this: public string SetGrade(float score) { if (score>=90.0f) grade="A"; else if (score>=80.0f) grade="B"; else if (score>=70.0f) grade="C"; else if (score>=60.0f) grade="D"; else grade='F'; return grade; … -
Began Watching class struct or interface method must have a return type
using System; namespace studentObj class Student { private int id (); private string name (); private char grade (); public int ID { get {return id;} } public string Name … -
Replied To a Post in class struct or interface method must have a return type
So... you just post some code... now what? Nobody here can read your mind to know what problems you are having with this code. Explain your self! At least say … -
Began Watching remove portion of a string
hello everyone, I am looking to remove some stuff from my string: $list = "7:2,3:1,5:1,33:1,23:2"; $list = "7:2,3:1,33:1,23:2"; // REMOVE THE "5:1," OR ANY OTHER DINAMICALY AT ANY POSITION $list … -
Replied To a Post in remove portion of a string
If you know exactly what you want to remove, just use replace: $list = str_replace("5:1", "", $list); Some helpful links: http://php.net/manual/en/function.str-replace.php http://php.net/manual/en/function.substr-replace.php -
Replied To a Post in keeping Sortable order on refresh
Ok, I got what you want. But let me say, you don't need to change Ids for this. What you need is to store the Id and his order. Take … -
Replied To a Post in keeping Sortable order on refresh
I didn't understand much of what you are trying to do. You have two divs with Ids: set_1 and set_2. So, do you want to change thoses Ids for what? -
Began Watching Ignore temporary tables in replication
Hi all, Is it possible to ignore temporary tables in mysqlbinlog file for replication. -
Replied To a Post in Ignore temporary tables in replication
Yes, it is. You can use `--replicate-ignore-table` and `--replicate-wild-ignore-table`. As explained here: http://dev.mysql.com/doc/refman/5.1/en/replication-features-temptables.html -
Began Watching how to get image from directory to slider
<html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> <!-- directorySlider Javascript file --> <script src="js/directorySlider.js"></script> <script src="js/directorySlider.min.js"></script> <script> $('#slider-main').directorySlider({ animation: 'fade', filebase: 'img_', directory: 'images/', extension: … -
Replied To a Post in how to get image from directory to slider
So... you posted some code, but what's your question or your problem? Don't just throw code, explain yourself, at least say what you got and want want. And your code … -
Replied To a Post in Continually Change Text Color onmouseover
I wouldn't suggest using external script references. Just download the jquery file from jquery.com, put in the same folder and use like this: <script type="text/javascript" src="jquery.1.x.js"></script> And the jQuery functions … -
Began Watching security problem with login into admin page by typing the link in browser
Hello. i'm creating a simple CMS for myself. There is a register form, i can register as the admin of the cms and then with login form, i can enter … -
Replied To a Post in security problem with login into admin page by typing the link in browser
Use sessions to stored the logged in user. When the users logs in you need to save that info(UserId for example) on the Session. And in every page load you … -
Began Watching keeping Sortable order on refresh
Hi, I have been trying to save the state of a sortable list. I have been able to save the sort order to localStorage and get the sort order so …
The End.