section

Include websphere extensions section in application.xml

Hi, Can you help me by explaining how to include WebSphere Extensions section in application.xml if WebSphere Extensions is not present ...

iPhone UITableView populating variable rows sections from flat array

I thought that would be very common and easy iPhone App. In the main app I connect to database, retrieve values from database (NSDate converted to NSString)n and put into single array. Then in one of the views I populate UITableView with elements from the array. UITableView is grouped (sections). I step through array to discover number o...

iPhone CoreData: How to group fetched results by day?

Hi! I am developing an iPhone App with CoreData. One of my entities has an NSDate property named 'time'. It stores times to the minute/second. As my sections i'd like to have the date to the day. So if there are to entries '2010-06-14 8:00' and '2010-06-14 11:00', i'd like them to be grouped to '2010-06-14'. Currently I just use @"time...

How do I extract who signed a controlled access section in Lotus Notes?

I would like to export the contents of a Lotus Notes database to XML. In the resulting file I would like to see who had signed a particular controlled access section. I know that the digital signatures are not exported. All I need to know is who signed the section and when did he/she do it. In what way can I use the DXL Exporter to e...

Creating a list similar to .ctors from multiple object files

I'm currently at a point where I need to link in several modules (basically ELF object files) to my main executable due to a limitation of our target (background: kernel, targeting the ARM architecture). On other targets (x86 specifically) these object files would be loaded at runtime and a specific function in them would be called. At s...

jqgrid : is it possible to insert a section-roll-up bar every 'n' records?

With the jqGrid is it possible to insert a section bar every 'n' records where clicking on the section-bar would toggle section expand/collapse? I am looking for a way to control the displayed height of the grid when I have set its height=100%. Here is pseudo-html showing such a section-bar inserted every 5 rows. The last section has o...

how to convert the value of nsarray to integer value

Hi friend, I working on grouped table view based work in that in that i want to convert the value of NSarray into integer for specifing to section value of numberOfRowsInSection but it throws expection on putting following code. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { int sec; if (...

best way to show a image near my header section of tableview with header title

Hi friends, I have to show a image near my header section of tableview with header title.Can anybody suggest the best way of doing it? Thanks in advance for your suggestion. Regards, sathish ...

Modifying \section{} to make it colorful with LaTeX

How can I change the \section{} style? Especially I want to change the color of section heading. I happen to find some neat style following Edward R. Tufte (http://code.google.com/p/tufte-latex/), and I'm trying to find a way to modify the section color. Added color package works fine, but the thing is that the color chapter number ...

custom background uitableview with more than 1 section (IPHONE)

Hi, i need to set an image to my UITableviewcontroller; if i have just one section on the tableview works fine with: self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"someImage.jpeg"]]; but if there are 2 section on tableview the image comes duplicate for each section. Some idea? Thanks in advance...

Is there a RPM Spec section executed before file dependency check?

I'm trying to build an RPM that will install file dependencies if they don't exist. Is there an RPM Spec Section that will be executed before the RPM checks for dependencies. (I'm refering to file dependencies not package dependencies listed in the "Requires" header). Example: If I have a perl file and the execution permissions bit is s...

how to detect a user tap on table view

i want to detect user touch on table view so that i can pass that particular section information to the next view to display it ... how can i do it ...

How can I adjust the space between sections in a grouped Table View?

I have a tableview that is basically four sections in length, designed for user input. I am not using headers or footers as of now. Section 0 has 4 rows. Section 1 has 2 rows. Section 2 has 1 row. Section 3 has 1 row. I want to have section 2 and 3 a little closer together and sections 0 and 1 a little closer together - basically co...

Autogroup UITableView alphabetically

Hi there, is there a way to autogroup/autosection my UITableView alphabetically? I have a huge array which is being displayed nicely, but it would be even better if I had the sections like in addressbook.app. Best –f ...

iPhone - creating a tableview sectioned and in alphabetical order

I am pretty new to programming any sort of device and am on a steep learning curve, so please forgive me if this doesnt make too much sense or the code in the question is awful - we all ave to start somewhere, and beleive me, i have read and read and read! I am creating a table from a plist which is an array of dictionarys - i need it i...

Multicharacter Table Section Titles Using NSFetchRequest

Hi there, I've just started using NSFetchRequests to handle all of my table/database connections, and it was going fine until I tried to implement a table that had sections in it... The problem is that one of my tables is sectioned based on a floating point value which can take the value of: 0.0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0,...

Recommendation for editing/deleting section

Apple's documentation on UITableView discusses how to add/edit/delete rows, but it doesn't discuss adding/editing/deleting sections is detail, specially with respect to the UI. In case of add/delete rows, you can apply "add" and "delete" styles on the row using: - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingS...

Android ListViews and Dynamic Section Headers

I have an Array that I pass to a CustomAdapter for a ListView. The array has items that are already sorted. Something like: [{"stuff":[{"stuff_id": "1", "value":"test123"}, {"stuff_id": "1", "value":"test123"}, {"stuff_id": "2", "value":"test123"}]}] The Array changes allot so I do not know haw many sections I will have. So far I am...

Objective-C Section Headers not appearing correctly?

I have a Station object defined as: @interface RFStation : NSObject { NSString *stationID; NSString *callsign; NSString *logo; @end I also have an NSMutableArray called 'StationList' which is a list of Station objects. This list is sorted alphabetically by 'callsign'. I also have another NSArray called 'generalList', c...

Regex subbing out 'section character' in java

I'm running a series of regex substitutions (i.e. String.replaceAll calls) to convert all the special characters in a text file to XML parseable special characters. For example: string_out = string_out.replaceAll("&", "&"); I've hit a stumbling block replacing the 'section character' that is, this little squiggle: § For starters,...