Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have requirement, I am showing a Menu on the right side of the partial view in MVC. I do have edit mode and view mode, in the view. When I am in edit mode, I want to ask a confirmation message to navigate or not, on the click of the menu links. Somebody please help me on this.
You could store a session variable that indicates if you can navigate away without confirmation, which you could set to false when calling the edit views. Edit: if you don't like session, you could also use the localStorage
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 months ago.
Improve this question
Good day to all. My question is: is it possible to make the modal window not close after the refetch happens?
At the moment, I have implemented the function of launching the broadcast in a modal window and by clicking on the "Start" button, the variable is refetched, which is responsible for whether the broadcast activity is true or false. And after refetch my modal closes, which I don't want. I can provide code if needed, but it seems to me that this is a more generalized problem.
By refetch you referring to Refresh of the browser?
If so, I would suggest use some redux-persist or managing your own storage over localstorage, on each open/close of the modal, you should update your store/localstorage, and on the next refresh, check if you got modal data stored and open the modal again accordantly.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
How could I use PHP or Javascript to check if a user's previous page was a certain page on my site and then if so, show an alert box?
This could be circumvented if a person really wanted to.
//on the page for the alert
session_start();
if($_SESSION['lastPage']=='??'){
echo 'alert';
}
//on the page you want to detect if the user came from
session_start();
$_SESSION['lastPage']=$_SERVER['REQUEST_URI'];
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I've justed purchased wordpress theme called "freelanceengine"
What I want is to make changes to that theme, exactly login and signup page.
After theme installation, I tried to find signup page or link in source and database for several hours, but not found yet :(
Looking for somebody who have experienced similar problem.
Please have a look at this screenshot where I expect to see "Sign Up" link
it seems you didn't set "users_can_register" in your theme options.
Try this sql in your mysql console:
UPDATE wp.wp_options SET option_value = '1' WHERE option_name = users_can_register;
It worked for me :)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to insert a value in database when visitor click on a link.
For example:
Visitor comes on http://www.website.com/lp.php?id=broker
When he clicks on "Register now" I want to add the id value "broker" & the current time into database.
I need the javascript code to do that. I already tried all kind of scripts and I decided to ask here.
You can do this with jQuery Ajax and PHP or using HTML POST form.
http://api.jquery.com/jquery.post/
With jQuery:
$("#register_now_button_id").click(function(){
//AJAX CALL HERE
});
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
http://www.advocotek.com/demo/enhancedv2/index.php?module=Accounts&action=EditView&return_module=Accounts&return_action=index
When you open the link, You see arrow icons , upon clicking one, a popup opens and lets you filter and select a record and drops the value for form's text field.
How can I accomplish this?
I am a python, django user and with a litle javascript knowledge. I need a plug and play way to use this across all form widgets, programatically.
thx.
The Django admin can do this already, wherever you have a ForeignKey field in the ModelForm the admin site will show the + button and popup selector functionality you want.
Here is an article about how to achieve the same thing in your own views outside the admin:
http://sontek.net/blog/detail/implementing-djangos-admin-interface-pop-ups
...author has released the code as a reusable Django app:
https://github.com/sontek/django-tekextensions
Here is another app which does more but also includes the functionality you're looking for:
https://django-autocomplete-light.readthedocs.org/en/latest/addanother.html