Click here to Skip to main content
15,891,708 members
Please Sign up or sign in to vote.
1.44/5 (2 votes)
See more:
C#
Any body can help me how blinking particular column text( TokenNumber) in JTable ?




JavaScript
fields: {
         Id: {
             key: true,
             list: false,
         },
         TokenNumber: {

             title: 'Token Number',
             width: '10%',
             create: false,
             edit: false

         },
         Name: {
             title: '@LabelStringResource.name',
             width: '10%',

         },
         MobileNumber: {
             title: '@LabelStringResource.Phonenum',
             width: '10%',

         },
         Email: {
             title: "Email",
             width: '08%',

         },


What I have tried:

i tried but i couldn't able to do that one..
Posted
Updated 19-Oct-16 19:22pm
Comments
Karthik_Mahalingam 19-Oct-16 12:38pm    
does the framework has this feature?
Gopal Reddy Ip 19-Oct-16 13:08pm    
what do u ask me i cant understand clearly can u tell me clearly

1 solution

Hi Gopal,
You can create id of particular column. For eg.: you can create id of token number and apply css on particular column using jquery or javascript:

JavaScript
$(document).ready(function()) { 
function blinker() {
  $('#blink_token').fadeOut(500).fadeIn(500, blink);
} 

setInterval(blinker, 1000);
});


I think it may be helpful for you.
 
Share this answer
 
v2
Comments
Gopal Reddy Ip 20-Oct-16 5:36am    
Hai priya,

i didn't create any control(textbox), Toke number is autogenerate column and display directly in jtable then how we can do?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900