The problem is: When I am using Tab Control, the text inside the control is very very big and not using default size and this is all Chinese char, but English or digital is small correctly, how can I solve this problem, I am just using in base.css, which is my web page default font size.
Where "parent().appendTo('form:first');", the dialog will cover my web page even if it was hidden and closed! this will also block my other button on my web page screen, but I remove appendTo('form:first');, that's no problem but the asp:button inside is no reaction.
When I first press "ChooseQuotation" is OK and re-press it similarly OK, then press "InputGoodsForm" also OK but if I press "ChooseQuotation" again the button can not be pressed, how can I fix it?
By the way, the dialog content is just ASP.NET button and textbox.
I am using VS2010 + jQuery but I found that the script intelligent hasn't show function that when I press "." for obtain its method, how can I fix it??
I have already opened a dialog, there are form inside with InputGoodsAdd, which use to submit the form, but I want to set the button text as "please wait ..." and disable it.
$(document).ready(function () {
$('#InputGoodsAdd').click(function () {
var inputGoodsLink = $('#InputGoodsLink').val();
var inputGoodsQuantity = $('#InputGoodsQuantity').val();
var inputGoodsRequirement = $('#InputGoodsRequirement').val();
var inputGoodsSpecific = $('#InputGoodsSpecific').val();
The reason that I need to show a dialog to user that they use a button to confirm, but the button is ASP.NET button and using JQuery UI, I want to set value = Please Wait and disabled the button once user has press this button so that can prevent double-click request to server and set message Please Wait ...
I think this is not bug but I am not so sure how to do it correctly, could anyone fix this for me? attachment is my dialog box that showing to user.