Click here to Skip to main content
15,895,528 members

Comments by yogesh vaidya (Top 28 by date)

yogesh vaidya 23-Aug-20 1:53am View    
i have question ,
i want to show different word in header and each word scrollamount speed is different

i.s

abcd scrollamount=3
efgh scrollamount 6
xyz scrollamount 2

but i trying to create different tag
<marquee scrollamount="3" direction="right">
abcd

<marquee scrollamount="6" direction="right">
efgh


<marquee scrollamount="2" direction="right">
xyz

last one is not appear in div or not showing in a div
yogesh vaidya 16-Jul-20 6:39am View    
thanks sir,
yogesh vaidya 18-Feb-19 22:29pm View    
hi,
yes sir i had , but i need solution or help on this topic ,and so i am getting in trying to asked its by various way
you all's are genius and master in various type of Computer languages and newly switched student . So sir please help me improve this

thanking you ,
yv.
yogesh vaidya 16-Feb-19 7:11am View    
thanking you sir that you listen my problem

main problem is suppose i enter i data in first main row
srno ,product_name , quantity ,rate

and get total and net-total successfully and clone it in a new div new row
after entering some row or its seem that user mistaken to enter qty and he need to edit
second clone row
at that time first i need to get total value secretly which i need to less from Net-total
and give to facilitate a curse in clone row qty field
thus after when user enter qty the other function is easy to get total and net-total

but a lot of try i cant get success to read this total field value



yogesh vaidya 8-Feb-19 6:46am View    
ajax topic is not working ,
before the ajax all things is working properly in
if (isAllValid) {
alert("ok1")

reverts the message 'ok1' but there after nun of action getting from ajax
mins some mistake is in ajax but i cant understand ,

$.ajax({
url: "/Perchus/PostMethod",
dataType: 'json',
data: {
ProductId: $("#ProdID").val(),
Gst: $("#ProductGstCode").val(),
PerchesQty: $("#PerchesQty").val(),
PerchesRate: ("#PerchesRate").val()
},
type: "POST",
cache: false,
success: function (data)
{
//want to return data as not boolean but string here
if (data == "success") {
alert(isAllValid);
}
else {
alert("false")
}
},
error: function () {
alert("Error")
}
});
}


its should not reports to controller

[HttpPost]
public JsonResult UpdateUsersDetail(string Gst,int ProductId)
{

var js = new JavaScriptSerializer();
PerchesDetail[] user = js.Deserialize<PerchesDetail[]>(usersJson);


return Json("User Details are updated");