16,016,087 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Member 8430279 (Top 8 by date)
Member 8430279
7-Feb-14 3:23am
View
Hi Joginder,
The message in bold on the top is what I am getting.
regards
Member 8430279
10-Nov-13 5:03am
View
Many thanks for your guidance Christian. It has definitely pointed me in the right direction.
Member 8430279
9-Nov-13 18:49pm
View
Hi Christian,
Looking at the standard of coding you must have guessed how complete novice I am when it comes to anything with javascript.
I did tried to run the same in chrome and resolved. I even managed to get the calender. However when I run the same in IE, error comes back.
I have now removed the following code and placed it in the page where I have got that class.
<script src="Scripts/bootstrap-datepicker.js" type="text/javascript">
var datepicker = $.fn.datepicker.noConflict(); // return $.fn.datepicker to previously assigned value
$(document).ready(function () {
$('.datepicker').datepicker();
});
$.fn.bootstrapDP = datepicker; // give $().bootstrapDP the bootstrap-datepicker functionality
$('.datepicker').datepicker({
format: 'dd/mm/yyyy',
startDate: '-3d'
});
</script>
and changed it to the following
<script src="../Scripts/bootstrap-datepicker.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.datepicker').datepicker();
});
</script>
I now have 2 things to ask.
1. It looks bit awkward to write the same thing in every page where the calender is to be used.
2. How come something is working in Chrome but not in IE.
Member 8430279
6-Nov-13 2:15am
View
Sorry by "call the form" I mean when the popup open the form "getKeysforAddUpdatePropertyKey.aspx". 324 is just a default value. I actually want to pass a number in textBox "txt_property_id".
Member 8430279
6-Nov-13 2:12am
View
Rather than 324 which is just a static value, I want to pass a value which is in my textBox. I have tried debugging and the method "add_keys" is not even called.
Member 8430279
5-Nov-13 4:46am
View
Thank you Thank you Thank you Thank you Thank you so much.
You have save much frustration for me
Member 8430279
5-Nov-13 4:34am
View
Hi,
I have updated my question with the error. Sorry about earlier message
Member 8430279
5-Nov-13 4:34am
View
Hi,
I have updated my question with the error. Sorry about earlier message
Show More