Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
2k views

OpenXML 2 SDK - Word document - Create bulleted list programmatically

Using the OpenXML SDK, 2.0 CTP, I am trying to programmatically create a Word document. In my document I have to insert a bulleted list, an some of the elements of the list must be underlined. How can ...
2
votes
1answer
235 views

TinyMCE: Force all content into a bulleted list?

Is it possible to force all content posted in a tinyMCE textbox to be wrapped in a bulleted list? i.e. All content would be wrapped in a <ul> and each line break in the text box would create a ...
2
votes
1answer
599 views

BulletedList onClick not firing

Ugh, this is driving me mad Im trying to build up a dynamic menu from a bulletedList, most menu items are plain links however the log out button needs to perform some cleanup code. I cant for the ...
2
votes
3answers
1k views

How do I trigger a BulletedList in LinkButton-mode with javascript?

I have a BulletedList in asp.net that is set to DisplayMode="LinkButton". I would like to trigger the first "bullet" from a javascript, can this be done? And if so, how?
1
vote
2answers
385 views

List bullets not displaying correctly in Internet Explorer

I have an <ol> with some <li>'s in it, in FF it looks good, but for some reason in IE it looks like this: HTML: <ol start="1"> <li>Free gifts click here</li> ...
1
vote
1answer
530 views

Why does the bullet point created by OpenXML become a strange character?

I encountered a very strange problem while I was creating a bullet list using the Open XML SDK. The problem is the bullet points in the list are shown in strange characters, not the dots that I ...
1
vote
2answers
258 views

TreeView-Like list of Links

I have a have a table with Region_Name, Region_ID fields, and another one with Area_Name, Region_ID fields (each region have Areas that belongs to it). I want to display on my asp.net page a list of ...
0
votes
0answers
35 views

Regular expression for parser (num/mark)-lists [closed]

How to write a simple parser for bulleted-list in wiki-markup, for example * 1st element of 1st level * 1st element 2nd level * 2nd element 2nd level * 2nd element 1st level with help ...
0
votes
2answers
122 views

How to add element inside ListItem in code behind?

I want to add something like this in the code behind: <ul> <li><a>A</a></li> </ul> However, the ListItem of ASP.NET seems to allow text only: BulletedList ...
0
votes
2answers
214 views

Modify an asp:BulletedList in C#

I've different buttons like this <asp:Button ID="button1" runat="server" Text="single" title="single" EnableViewState="false" /> When this button is clicked I want that the text in a list ...
0
votes
1answer
372 views

ASP.NET BulletedList - Get Selected Item (Javascript)

I have a BulletedList in ASP.NET <asp:BulletedList ID="lstItems" OnClick="Item_OnClick" DisplayMode="LinkButton" runat="server" /> On the server I handle the list item's link button click ...
0
votes
2answers
312 views

How to create a bulleted or numbered list with Qt?

How to create a bulleted or numbered list in QTextEdit with Qt by clicking a button? Also it is necessary that make a list the paragraphes which are selected by clicking the same button. And when the ...
0
votes
1answer
147 views

How to count the number of listitems in an asp.bulletedlist with JavaScript

I have an asp:bulletedlist control, which sits inside a div tag, and I need to count the number of list items inside the control. Searching the internet, and noting the fact the html given back by the ...
0
votes
3answers
379 views

ASP.NET BulletedList disabled item not compliant with XHTML 1.0 Strict DOCTYPE

I have a site that I've tried to make compliant to XHTML 1.0 Strict. The doctype has been declared accordingly and I've set the web.config with the following: <system.web> ...