Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~955 People Reached
Favorite Tags
Member Avatar for aus_fas1

I want to replace form field names with the label text in the following code. I am just missing a line perhaps var template = $('#idRequestDetails').clone(); template.find('input,select,textarea,table').each(function(){ var newId = this.id.substring(0, this.id.length-1) + uniqueId; $(this).prev().attr('for', newId); // update label for this.name = this.id = newId; // update id and name …

Member Avatar for LastMitch
0
80
Member Avatar for aus_fas1

I am trying to dynamically append DIV tag after the last one. Also if the user clicks remove button then div in which the remove button is clicked should be eliminated. My caption (is in JS and want to covert it in JQquery) is also not working well. There are …

Member Avatar for AleMonteiro
0
269
Member Avatar for aus_fas1

Hi I want to increment file number with date e.g 19-FEB-09-1.dat, 19-FEB-09-2.dat .... So in the write function after it runs for certain number of times say 12 the file number then increments to next one. However, if the file number already exists it then move to next number to …

Member Avatar for aus_fas1
0
121
Member Avatar for aus_fas1

Hi, I have the following structure to read the file data with fixed format of my binary file. Now I want that every time my ReadFromFile function is called with 'counter' variable it should 1. return me frame specified in the 'counter'. 2. The file needs to be closed only …

Member Avatar for Salem
0
146
Member Avatar for aus_fas1

Hi I am reading a file with number of frames. frame 1 distance [3072] intensity [3072] amplitude [3072] w_amplitude [3072] frame 2... Now I want to read the data in structure form so that I have:- frame[0].distance[0] frame[0].distance[1].... ... frame[0].amplitude[0] ... frame[1].distance[0] and so on. My code is below and …

Member Avatar for Lerner
0
96
Member Avatar for aus_fas1

Hi, I am writing an array data to a file. The data I am getting is from some sensor and need to be written in real time. I have manged to write it but I am having problem when I try to read it, as I cannot position the pointer …

Member Avatar for aus_fas1
0
243