anyone knows the manufacterer of this grid control? - user-interface

It is amazing.Each combobox cell has specific items(I couldn't show in the picture).
http://up.vatandownload.com/images/f6sq44ycqe34ptw37m42.jpg

Omicron Electronics:
http://www.omicron.at/en/products/pro/secondary-testing-calibration/cmc-156/

Related

NSTextField clicked link colour

I have an NSTextField that contains an NSAttributedString which itself contains a clickable link.
I've change the colour of the link for my own styling, however when I click on it it becomes blue and underlined. How can I stop this?
Seems that I'm not the only one with this problem, and there's a handy class to solve it:
https://github.com/laevandus/NSTextFieldHyperlinks
https://github.com/catlan/DSClickableURLTextField
This (http://developer.apple.com/library/mac/#qa/qa1487/_index.html) may help you. It will show you how to set/change the blue link color and the underlineAttribute. You may also have a look at the methods -linkTextAttributes and -setLinkTextAttributes: of an NSTextView.

NSOutlineView for 10.6

I am new to cocoa. I will need to implement an NSoutlineview for 10.6 OS X and above. I have hierarchy of data which must be shown in the form of outlineview. The cell for outline view must contain an image and text. Could some body please suggest on how to go a head with this?
thanks
an outlineview is basically just a tableview so all tutorials for NSTableView apply to it
only the dataSource methods differ
so: http://www.martinkahr.com/2007/05/04/nscell-image-and-text-sample/
and combine it will a tutorial of a cell based outline. e.g. http://devcry.heiho.net/2012/02/treeview-in-cocoa-nsoutlineview.html
For your best practice you can refer this sample code Sourceview
To customize your text you need to set your cell as ImageAndText cell as shown in that samplecode

How to know which row in a ListView is selected?

I am working on a simple window form program. The program has a ListView. I need to know which row in the ListView is selected. How I can do that?
Look in the documentation of the ListView class, there are various properties that start with Selected.

XUL: How to edit popup's position

i'm developing a simple Firefox Addon: a button with popup shown with a classical mouse over event.
Does someone know if is possible set the position of the popup ?
Ex: top left instead bottom right
Thanks
Did you take a look at this?
Also take a look at positioning popups. It also has an example.

RadGrid Specify ComboBox skin on edit?

I have a grid and a skin specified for that and it works fine. However, on the contained GridDropDownColumn columns, when it shifts to edit mode, the combo box is created nicely, but does NOT inherit the skin of the grid as the text boxes do. This results is a mixture of font sizes in the edit row (inline edit).
How can I tell the created ComboBox which skin to use?
Thanks!
I come upon similar glitch in one of my projects and what helped me to bypass it to set the EnableAjaxSkinRendering property of the RadComboBox editors to true on ItemCreated. Try that to see how it goes.
Dick

Resources