the menu manager, displayed internet explorer 7, shows "menu item" column center aligned. isn't correct, specially if have tree structure submenus.
so here's thel fix:
the file modify is: /administrator/components/com_menu/admin.menus.html.php
the row modify 117.
from:
if ( $row->checked_out && ( $row->checked_out != $my->id ) ) {
to:
| if ( $row->checked_out && ( $row->checked_out != $my->id ) ) {
thats all. q&t note: status > under review
Popular posts from this blog
my main reason starting site have "place" host forum, going main reason visiting site. far have installed joomla , getting hang of running it. want add forum. is there particular forum software works joomla? i thinking of phpbb... had kind of decided on , found web hosting company support (dreamhost). i'm ready, wanted opinions of if that's right way go. is it? well use smf http://www.simplemachines.org/ , use on here , can going within joomla using http://www.simplemachines.org/download/?bridges Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x
dear all, working on image processing using raspberry pi, have installed intex usb web camera on raspberry pi. have used basic python script of image processing https://www.cl.cam.ac.uk/projects/raspb ... first.html required libraries installed on raspberry pi. script code: import imgproc imgproc import * # open webcam take pictures camera = camera(160, 120) # open viewer window display images viewer = viewer(160, 120, "the first step") # take picture camera img = camera.grabimage() # display image in viewer viewer.displayimage(img) # iterate on each pixel in image x in range(0, img.width): for y in range(0, img.height): # value @ xth column , yth row, place intensities variables red, green, blue = img[x, y] # test find colour dominant if red > green , red > blue: # red dominant, set pixel red img[x, y] = 255, 0, 0 elif green > red , green > blue: img[x, y] = 0, 255, 0 else: # if red or gr...
hi, what's correct implementation sort of thing ? i want add list. content list user entered textbox. contents of textbox put inside list, 1 below other.....i started venture using rowcount property, can't work....i wanted simple alert see current rowcount....i have following code.... import mx.controls.alert; import mx.controls.listclasses.listbase; public function addme():void { alert.show(string(showlist.rowcount)); } but constant value of 7. don't understand how ? you want length of dataprovider. rowcount refers control's visible rows. has nothing data. to add item, use dataprovider api, probablyadditem(). tracy More discussions in Flex (Read Only) adobe
|
Comments
Post a Comment