LuCI.form.AbstractValue.html 226 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Class: AbstractValue</title>
  6. <script src="scripts/prettify/prettify.js"></script>
  7. <script src="scripts/prettify/lang-css.js"></script>
  8. <script src="scripts/jquery.min.js"></script>
  9. <!--[if lt IE 9]>
  10. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  11. <![endif]-->
  12. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  13. <link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
  14. <link type="text/css" rel="stylesheet" href="styles/jaguar.css">
  15. <script>
  16. var config = {"monospaceLinks":true,"cleverLinks":true,"default":{"outputSourceFiles":true}};
  17. </script>
  18. </head>
  19. <body>
  20. <div id="wrap" class="clearfix">
  21. <div class="navigation">
  22. <h3 class="applicationName"><a href="index.html"></a></h3>
  23. <div class="search">
  24. <input id="search" type="text" class="form-control input-sm" placeholder="Search Documentations">
  25. </div>
  26. <ul class="list">
  27. <li class="item" data-name="LuCI">
  28. <span class="title">
  29. <a href="LuCI.html">LuCI</a>
  30. </span>
  31. <ul class="members itemMembers">
  32. <span class="subtitle">Members</span>
  33. <li data-name="LuCI#Class"><a href="LuCI.html#Class">Class</a></li>
  34. <li data-name="LuCI#dom"><a href="LuCI.html#dom">dom</a></li>
  35. <li data-name="LuCI#env"><a href="LuCI.html#env">env</a></li>
  36. <li data-name="LuCI#Poll"><a href="LuCI.html#Poll">Poll</a></li>
  37. <li data-name="LuCI#Request"><a href="LuCI.html#Request">Request</a></li>
  38. <li data-name="LuCI#view"><a href="LuCI.html#view">view</a></li>
  39. </ul>
  40. <ul class="typedefs itemMembers">
  41. <span class="subtitle">Typedefs</span>
  42. <li data-name="LuCI.requestCallbackFn"><a href="LuCI.html#.requestCallbackFn">requestCallbackFn</a></li>
  43. </ul>
  44. <ul class="typedefs itemMembers">
  45. </ul>
  46. <ul class="methods itemMembers">
  47. <span class="subtitle">Methods</span>
  48. <li data-name="LuCI#bind"><a href="LuCI.html#bind">bind</a></li>
  49. <li data-name="LuCI#error"><a href="LuCI.html#error">error</a></li>
  50. <li data-name="LuCI#fspath"><a href="LuCI.html#fspath">fspath</a></li>
  51. <li data-name="LuCI#get"><a href="LuCI.html#get">get</a></li>
  52. <li data-name="LuCI#halt"><a href="LuCI.html#halt">halt</a></li>
  53. <li data-name="LuCI#hasSystemFeature"><a href="LuCI.html#hasSystemFeature">hasSystemFeature</a></li>
  54. <li data-name="LuCI#hasViewPermission"><a href="LuCI.html#hasViewPermission">hasViewPermission</a></li>
  55. <li data-name="LuCI#isObject"><a href="LuCI.html#isObject">isObject</a></li>
  56. <li data-name="LuCI#location"><a href="LuCI.html#location">location</a></li>
  57. <li data-name="LuCI#media"><a href="LuCI.html#media">media</a></li>
  58. <li data-name="LuCI#path"><a href="LuCI.html#path">path</a></li>
  59. <li data-name="LuCI#poll"><a href="LuCI.html#poll">poll</a></li>
  60. <li data-name="LuCI#post"><a href="LuCI.html#post">post</a></li>
  61. <li data-name="LuCI#raise"><a href="LuCI.html#raise">raise</a></li>
  62. <li data-name="LuCI#require"><a href="LuCI.html#require">require</a></li>
  63. <li data-name="LuCI#resolveDefault"><a href="LuCI.html#resolveDefault">resolveDefault</a></li>
  64. <li data-name="LuCI#resource"><a href="LuCI.html#resource">resource</a></li>
  65. <li data-name="LuCI#run"><a href="LuCI.html#run">run</a></li>
  66. <li data-name="LuCI#sortedKeys"><a href="LuCI.html#sortedKeys">sortedKeys</a></li>
  67. <li data-name="LuCI#stop"><a href="LuCI.html#stop">stop</a></li>
  68. <li data-name="LuCI#toArray"><a href="LuCI.html#toArray">toArray</a></li>
  69. <li data-name="LuCI#url"><a href="LuCI.html#url">url</a></li>
  70. </ul>
  71. <ul class="events itemMembers">
  72. </ul>
  73. </li>
  74. <li class="item" data-name="LuCI.baseclass">
  75. <span class="title">
  76. <a href="LuCI.baseclass.html">LuCI.baseclass</a>
  77. </span>
  78. <ul class="members itemMembers">
  79. </ul>
  80. <ul class="typedefs itemMembers">
  81. </ul>
  82. <ul class="typedefs itemMembers">
  83. </ul>
  84. <ul class="methods itemMembers">
  85. <span class="subtitle">Methods</span>
  86. <li data-name="LuCI.baseclass.extend"><a href="LuCI.baseclass.html#.extend">extend</a></li>
  87. <li data-name="LuCI.baseclass.instantiate"><a href="LuCI.baseclass.html#.instantiate">instantiate</a></li>
  88. <li data-name="LuCI.baseclass.isSubclass"><a href="LuCI.baseclass.html#.isSubclass">isSubclass</a></li>
  89. <li data-name="LuCI.baseclass.singleton"><a href="LuCI.baseclass.html#.singleton">singleton</a></li>
  90. <li data-name="LuCI.baseclass#super"><a href="LuCI.baseclass.html#super">super</a></li>
  91. <li data-name="LuCI.baseclass#varargs"><a href="LuCI.baseclass.html#varargs">varargs</a></li>
  92. </ul>
  93. <ul class="events itemMembers">
  94. </ul>
  95. </li>
  96. <li class="item" data-name="LuCI.dom">
  97. <span class="title">
  98. <a href="LuCI.dom.html">LuCI.dom</a>
  99. </span>
  100. <ul class="members itemMembers">
  101. </ul>
  102. <ul class="typedefs itemMembers">
  103. <span class="subtitle">Typedefs</span>
  104. <li data-name="LuCI.dom~ignoreCallbackFn"><a href="LuCI.dom.html#~ignoreCallbackFn">ignoreCallbackFn</a></li>
  105. </ul>
  106. <ul class="typedefs itemMembers">
  107. </ul>
  108. <ul class="methods itemMembers">
  109. <span class="subtitle">Methods</span>
  110. <li data-name="LuCI.dom#append"><a href="LuCI.dom.html#append">append</a></li>
  111. <li data-name="LuCI.dom#attr"><a href="LuCI.dom.html#attr">attr</a></li>
  112. <li data-name="LuCI.dom#bindClassInstance"><a href="LuCI.dom.html#bindClassInstance">bindClassInstance</a></li>
  113. <li data-name="LuCI.dom#callClassMethod"><a href="LuCI.dom.html#callClassMethod">callClassMethod</a></li>
  114. <li data-name="LuCI.dom#content"><a href="LuCI.dom.html#content">content</a></li>
  115. <li data-name="LuCI.dom#create"><a href="LuCI.dom.html#create">create</a></li>
  116. <li data-name="LuCI.dom#data"><a href="LuCI.dom.html#data">data</a></li>
  117. <li data-name="LuCI.dom#elem"><a href="LuCI.dom.html#elem">elem</a></li>
  118. <li data-name="LuCI.dom#findClassInstance"><a href="LuCI.dom.html#findClassInstance">findClassInstance</a></li>
  119. <li data-name="LuCI.dom#isEmpty"><a href="LuCI.dom.html#isEmpty">isEmpty</a></li>
  120. <li data-name="LuCI.dom#matches"><a href="LuCI.dom.html#matches">matches</a></li>
  121. <li data-name="LuCI.dom#parent"><a href="LuCI.dom.html#parent">parent</a></li>
  122. <li data-name="LuCI.dom#parse"><a href="LuCI.dom.html#parse">parse</a></li>
  123. </ul>
  124. <ul class="events itemMembers">
  125. </ul>
  126. </li>
  127. <li class="item" data-name="LuCI.form">
  128. <span class="title">
  129. <a href="LuCI.form.html">LuCI.form</a>
  130. </span>
  131. <ul class="members itemMembers">
  132. </ul>
  133. <ul class="typedefs itemMembers">
  134. </ul>
  135. <ul class="typedefs itemMembers">
  136. </ul>
  137. <ul class="methods itemMembers">
  138. </ul>
  139. <ul class="events itemMembers">
  140. </ul>
  141. </li>
  142. <li class="item" data-name="LuCI.form.AbstractElement">
  143. <span class="title">
  144. <a href="LuCI.form.AbstractElement.html">LuCI.form.AbstractElement</a>
  145. </span>
  146. <ul class="members itemMembers">
  147. </ul>
  148. <ul class="typedefs itemMembers">
  149. </ul>
  150. <ul class="typedefs itemMembers">
  151. </ul>
  152. <ul class="methods itemMembers">
  153. <span class="subtitle">Methods</span>
  154. <li data-name="LuCI.form.AbstractElement#append"><a href="LuCI.form.AbstractElement.html#append">append</a></li>
  155. <li data-name="LuCI.form.AbstractElement#parse"><a href="LuCI.form.AbstractElement.html#parse">parse</a></li>
  156. <li data-name="LuCI.form.AbstractElement#render"><a href="LuCI.form.AbstractElement.html#render">render</a></li>
  157. <li data-name="LuCI.form.AbstractElement#stripTags"><a href="LuCI.form.AbstractElement.html#stripTags">stripTags</a></li>
  158. <li data-name="LuCI.form.AbstractElement#titleFn"><a href="LuCI.form.AbstractElement.html#titleFn">titleFn</a></li>
  159. </ul>
  160. <ul class="events itemMembers">
  161. </ul>
  162. </li>
  163. <li class="item" data-name="LuCI.form.AbstractSection">
  164. <span class="title">
  165. <a href="LuCI.form.AbstractSection.html">LuCI.form.AbstractSection</a>
  166. </span>
  167. <ul class="members itemMembers">
  168. <span class="subtitle">Members</span>
  169. <li data-name="LuCI.form.AbstractSection##parentoption"><a href="LuCI.form.AbstractSection.html#parentoption">parentoption</a></li>
  170. </ul>
  171. <ul class="typedefs itemMembers">
  172. </ul>
  173. <ul class="typedefs itemMembers">
  174. </ul>
  175. <ul class="methods itemMembers">
  176. <span class="subtitle">Methods</span>
  177. <li data-name="LuCI.form.AbstractSection#append"><a href="LuCI.form.AbstractSection.html#append">append</a></li>
  178. <li data-name="LuCI.form.AbstractSection#cfgsections"><a href="LuCI.form.AbstractSection.html#cfgsections">cfgsections</a></li>
  179. <li data-name="LuCI.form.AbstractSection#cfgvalue"><a href="LuCI.form.AbstractSection.html#cfgvalue">cfgvalue</a></li>
  180. <li data-name="LuCI.form.AbstractSection#filter"><a href="LuCI.form.AbstractSection.html#filter">filter</a></li>
  181. <li data-name="LuCI.form.AbstractSection#formvalue"><a href="LuCI.form.AbstractSection.html#formvalue">formvalue</a></li>
  182. <li data-name="LuCI.form.AbstractSection#getOption"><a href="LuCI.form.AbstractSection.html#getOption">getOption</a></li>
  183. <li data-name="LuCI.form.AbstractSection#getUIElement"><a href="LuCI.form.AbstractSection.html#getUIElement">getUIElement</a></li>
  184. <li data-name="LuCI.form.AbstractSection#load"><a href="LuCI.form.AbstractSection.html#load">load</a></li>
  185. <li data-name="LuCI.form.AbstractSection#option"><a href="LuCI.form.AbstractSection.html#option">option</a></li>
  186. <li data-name="LuCI.form.AbstractSection#parse"><a href="LuCI.form.AbstractSection.html#parse">parse</a></li>
  187. <li data-name="LuCI.form.AbstractSection#render"><a href="LuCI.form.AbstractSection.html#render">render</a></li>
  188. <li data-name="LuCI.form.AbstractSection#stripTags"><a href="LuCI.form.AbstractSection.html#stripTags">stripTags</a></li>
  189. <li data-name="LuCI.form.AbstractSection#tab"><a href="LuCI.form.AbstractSection.html#tab">tab</a></li>
  190. <li data-name="LuCI.form.AbstractSection#taboption"><a href="LuCI.form.AbstractSection.html#taboption">taboption</a></li>
  191. <li data-name="LuCI.form.AbstractSection#titleFn"><a href="LuCI.form.AbstractSection.html#titleFn">titleFn</a></li>
  192. </ul>
  193. <ul class="events itemMembers">
  194. </ul>
  195. </li>
  196. <li class="item" data-name="LuCI.form.AbstractValue">
  197. <span class="title">
  198. <a href="LuCI.form.AbstractValue.html">LuCI.form.AbstractValue</a>
  199. </span>
  200. <ul class="members itemMembers">
  201. <span class="subtitle">Members</span>
  202. <li data-name="LuCI.form.AbstractValue##datatype"><a href="LuCI.form.AbstractValue.html#datatype">datatype</a></li>
  203. <li data-name="LuCI.form.AbstractValue##default"><a href="LuCI.form.AbstractValue.html#default">default</a></li>
  204. <li data-name="LuCI.form.AbstractValue##editable"><a href="LuCI.form.AbstractValue.html#editable">editable</a></li>
  205. <li data-name="LuCI.form.AbstractValue##modalonly"><a href="LuCI.form.AbstractValue.html#modalonly">modalonly</a></li>
  206. <li data-name="LuCI.form.AbstractValue##onchange"><a href="LuCI.form.AbstractValue.html#onchange">onchange</a></li>
  207. <li data-name="LuCI.form.AbstractValue##optional"><a href="LuCI.form.AbstractValue.html#optional">optional</a></li>
  208. <li data-name="LuCI.form.AbstractValue##readonly"><a href="LuCI.form.AbstractValue.html#readonly">readonly</a></li>
  209. <li data-name="LuCI.form.AbstractValue##rmempty"><a href="LuCI.form.AbstractValue.html#rmempty">rmempty</a></li>
  210. <li data-name="LuCI.form.AbstractValue##uciconfig"><a href="LuCI.form.AbstractValue.html#uciconfig">uciconfig</a></li>
  211. <li data-name="LuCI.form.AbstractValue##ucioption"><a href="LuCI.form.AbstractValue.html#ucioption">ucioption</a></li>
  212. <li data-name="LuCI.form.AbstractValue##ucisection"><a href="LuCI.form.AbstractValue.html#ucisection">ucisection</a></li>
  213. <li data-name="LuCI.form.AbstractValue##validate"><a href="LuCI.form.AbstractValue.html#validate">validate</a></li>
  214. <li data-name="LuCI.form.AbstractValue##width"><a href="LuCI.form.AbstractValue.html#width">width</a></li>
  215. </ul>
  216. <ul class="typedefs itemMembers">
  217. </ul>
  218. <ul class="typedefs itemMembers">
  219. </ul>
  220. <ul class="methods itemMembers">
  221. <span class="subtitle">Methods</span>
  222. <li data-name="LuCI.form.AbstractValue#append"><a href="LuCI.form.AbstractValue.html#append">append</a></li>
  223. <li data-name="LuCI.form.AbstractValue#cbid"><a href="LuCI.form.AbstractValue.html#cbid">cbid</a></li>
  224. <li data-name="LuCI.form.AbstractValue#cfgvalue"><a href="LuCI.form.AbstractValue.html#cfgvalue">cfgvalue</a></li>
  225. <li data-name="LuCI.form.AbstractValue#depends"><a href="LuCI.form.AbstractValue.html#depends">depends</a></li>
  226. <li data-name="LuCI.form.AbstractValue#formvalue"><a href="LuCI.form.AbstractValue.html#formvalue">formvalue</a></li>
  227. <li data-name="LuCI.form.AbstractValue#getUIElement"><a href="LuCI.form.AbstractValue.html#getUIElement">getUIElement</a></li>
  228. <li data-name="LuCI.form.AbstractValue#isActive"><a href="LuCI.form.AbstractValue.html#isActive">isActive</a></li>
  229. <li data-name="LuCI.form.AbstractValue#isValid"><a href="LuCI.form.AbstractValue.html#isValid">isValid</a></li>
  230. <li data-name="LuCI.form.AbstractValue#load"><a href="LuCI.form.AbstractValue.html#load">load</a></li>
  231. <li data-name="LuCI.form.AbstractValue#parse"><a href="LuCI.form.AbstractValue.html#parse">parse</a></li>
  232. <li data-name="LuCI.form.AbstractValue#remove"><a href="LuCI.form.AbstractValue.html#remove">remove</a></li>
  233. <li data-name="LuCI.form.AbstractValue#render"><a href="LuCI.form.AbstractValue.html#render">render</a></li>
  234. <li data-name="LuCI.form.AbstractValue#stripTags"><a href="LuCI.form.AbstractValue.html#stripTags">stripTags</a></li>
  235. <li data-name="LuCI.form.AbstractValue#textvalue"><a href="LuCI.form.AbstractValue.html#textvalue">textvalue</a></li>
  236. <li data-name="LuCI.form.AbstractValue#titleFn"><a href="LuCI.form.AbstractValue.html#titleFn">titleFn</a></li>
  237. <li data-name="LuCI.form.AbstractValue#validate"><a href="LuCI.form.AbstractValue.html#validate">validate</a></li>
  238. <li data-name="LuCI.form.AbstractValue#write"><a href="LuCI.form.AbstractValue.html#write">write</a></li>
  239. </ul>
  240. <ul class="events itemMembers">
  241. </ul>
  242. </li>
  243. <li class="item" data-name="LuCI.form.ButtonValue">
  244. <span class="title">
  245. <a href="LuCI.form.ButtonValue.html">LuCI.form.ButtonValue</a>
  246. </span>
  247. <ul class="members itemMembers">
  248. <span class="subtitle">Members</span>
  249. <li data-name="LuCI.form.ButtonValue##inputstyle"><a href="LuCI.form.ButtonValue.html#inputstyle">inputstyle</a></li>
  250. <li data-name="LuCI.form.ButtonValue##inputtitle"><a href="LuCI.form.ButtonValue.html#inputtitle">inputtitle</a></li>
  251. <li data-name="LuCI.form.ButtonValue##onclick"><a href="LuCI.form.ButtonValue.html#onclick">onclick</a></li>
  252. <li data-name="LuCI.form.ButtonValue#datatype"><a href="LuCI.form.ButtonValue.html#datatype">datatype</a></li>
  253. <li data-name="LuCI.form.ButtonValue#default"><a href="LuCI.form.ButtonValue.html#default">default</a></li>
  254. <li data-name="LuCI.form.ButtonValue#editable"><a href="LuCI.form.ButtonValue.html#editable">editable</a></li>
  255. <li data-name="LuCI.form.ButtonValue#modalonly"><a href="LuCI.form.ButtonValue.html#modalonly">modalonly</a></li>
  256. <li data-name="LuCI.form.ButtonValue#onchange"><a href="LuCI.form.ButtonValue.html#onchange">onchange</a></li>
  257. <li data-name="LuCI.form.ButtonValue#optional"><a href="LuCI.form.ButtonValue.html#optional">optional</a></li>
  258. <li data-name="LuCI.form.ButtonValue#password"><a href="LuCI.form.ButtonValue.html#password">password</a></li>
  259. <li data-name="LuCI.form.ButtonValue#placeholder"><a href="LuCI.form.ButtonValue.html#placeholder">placeholder</a></li>
  260. <li data-name="LuCI.form.ButtonValue#readonly"><a href="LuCI.form.ButtonValue.html#readonly">readonly</a></li>
  261. <li data-name="LuCI.form.ButtonValue#rmempty"><a href="LuCI.form.ButtonValue.html#rmempty">rmempty</a></li>
  262. <li data-name="LuCI.form.ButtonValue#uciconfig"><a href="LuCI.form.ButtonValue.html#uciconfig">uciconfig</a></li>
  263. <li data-name="LuCI.form.ButtonValue#ucioption"><a href="LuCI.form.ButtonValue.html#ucioption">ucioption</a></li>
  264. <li data-name="LuCI.form.ButtonValue#ucisection"><a href="LuCI.form.ButtonValue.html#ucisection">ucisection</a></li>
  265. <li data-name="LuCI.form.ButtonValue#validate"><a href="LuCI.form.ButtonValue.html#validate">validate</a></li>
  266. <li data-name="LuCI.form.ButtonValue#width"><a href="LuCI.form.ButtonValue.html#width">width</a></li>
  267. </ul>
  268. <ul class="typedefs itemMembers">
  269. </ul>
  270. <ul class="typedefs itemMembers">
  271. </ul>
  272. <ul class="methods itemMembers">
  273. <span class="subtitle">Methods</span>
  274. <li data-name="LuCI.form.ButtonValue#append"><a href="LuCI.form.ButtonValue.html#append">append</a></li>
  275. <li data-name="LuCI.form.ButtonValue#cbid"><a href="LuCI.form.ButtonValue.html#cbid">cbid</a></li>
  276. <li data-name="LuCI.form.ButtonValue#cfgvalue"><a href="LuCI.form.ButtonValue.html#cfgvalue">cfgvalue</a></li>
  277. <li data-name="LuCI.form.ButtonValue#depends"><a href="LuCI.form.ButtonValue.html#depends">depends</a></li>
  278. <li data-name="LuCI.form.ButtonValue#formvalue"><a href="LuCI.form.ButtonValue.html#formvalue">formvalue</a></li>
  279. <li data-name="LuCI.form.ButtonValue#getUIElement"><a href="LuCI.form.ButtonValue.html#getUIElement">getUIElement</a></li>
  280. <li data-name="LuCI.form.ButtonValue#isActive"><a href="LuCI.form.ButtonValue.html#isActive">isActive</a></li>
  281. <li data-name="LuCI.form.ButtonValue#isValid"><a href="LuCI.form.ButtonValue.html#isValid">isValid</a></li>
  282. <li data-name="LuCI.form.ButtonValue#load"><a href="LuCI.form.ButtonValue.html#load">load</a></li>
  283. <li data-name="LuCI.form.ButtonValue#parse"><a href="LuCI.form.ButtonValue.html#parse">parse</a></li>
  284. <li data-name="LuCI.form.ButtonValue#remove"><a href="LuCI.form.ButtonValue.html#remove">remove</a></li>
  285. <li data-name="LuCI.form.ButtonValue#stripTags"><a href="LuCI.form.ButtonValue.html#stripTags">stripTags</a></li>
  286. <li data-name="LuCI.form.ButtonValue#textvalue"><a href="LuCI.form.ButtonValue.html#textvalue">textvalue</a></li>
  287. <li data-name="LuCI.form.ButtonValue#titleFn"><a href="LuCI.form.ButtonValue.html#titleFn">titleFn</a></li>
  288. <li data-name="LuCI.form.ButtonValue#value"><a href="LuCI.form.ButtonValue.html#value">value</a></li>
  289. <li data-name="LuCI.form.ButtonValue#write"><a href="LuCI.form.ButtonValue.html#write">write</a></li>
  290. </ul>
  291. <ul class="events itemMembers">
  292. </ul>
  293. </li>
  294. <li class="item" data-name="LuCI.form.DummyValue">
  295. <span class="title">
  296. <a href="LuCI.form.DummyValue.html">LuCI.form.DummyValue</a>
  297. </span>
  298. <ul class="members itemMembers">
  299. <span class="subtitle">Members</span>
  300. <li data-name="LuCI.form.DummyValue##href"><a href="LuCI.form.DummyValue.html#href">href</a></li>
  301. <li data-name="LuCI.form.DummyValue##rawhtml"><a href="LuCI.form.DummyValue.html#rawhtml">rawhtml</a></li>
  302. <li data-name="LuCI.form.DummyValue#datatype"><a href="LuCI.form.DummyValue.html#datatype">datatype</a></li>
  303. <li data-name="LuCI.form.DummyValue#default"><a href="LuCI.form.DummyValue.html#default">default</a></li>
  304. <li data-name="LuCI.form.DummyValue#editable"><a href="LuCI.form.DummyValue.html#editable">editable</a></li>
  305. <li data-name="LuCI.form.DummyValue#modalonly"><a href="LuCI.form.DummyValue.html#modalonly">modalonly</a></li>
  306. <li data-name="LuCI.form.DummyValue#onchange"><a href="LuCI.form.DummyValue.html#onchange">onchange</a></li>
  307. <li data-name="LuCI.form.DummyValue#optional"><a href="LuCI.form.DummyValue.html#optional">optional</a></li>
  308. <li data-name="LuCI.form.DummyValue#password"><a href="LuCI.form.DummyValue.html#password">password</a></li>
  309. <li data-name="LuCI.form.DummyValue#placeholder"><a href="LuCI.form.DummyValue.html#placeholder">placeholder</a></li>
  310. <li data-name="LuCI.form.DummyValue#readonly"><a href="LuCI.form.DummyValue.html#readonly">readonly</a></li>
  311. <li data-name="LuCI.form.DummyValue#rmempty"><a href="LuCI.form.DummyValue.html#rmempty">rmempty</a></li>
  312. <li data-name="LuCI.form.DummyValue#uciconfig"><a href="LuCI.form.DummyValue.html#uciconfig">uciconfig</a></li>
  313. <li data-name="LuCI.form.DummyValue#ucioption"><a href="LuCI.form.DummyValue.html#ucioption">ucioption</a></li>
  314. <li data-name="LuCI.form.DummyValue#ucisection"><a href="LuCI.form.DummyValue.html#ucisection">ucisection</a></li>
  315. <li data-name="LuCI.form.DummyValue#validate"><a href="LuCI.form.DummyValue.html#validate">validate</a></li>
  316. <li data-name="LuCI.form.DummyValue#width"><a href="LuCI.form.DummyValue.html#width">width</a></li>
  317. </ul>
  318. <ul class="typedefs itemMembers">
  319. </ul>
  320. <ul class="typedefs itemMembers">
  321. </ul>
  322. <ul class="methods itemMembers">
  323. <span class="subtitle">Methods</span>
  324. <li data-name="LuCI.form.DummyValue#append"><a href="LuCI.form.DummyValue.html#append">append</a></li>
  325. <li data-name="LuCI.form.DummyValue#cbid"><a href="LuCI.form.DummyValue.html#cbid">cbid</a></li>
  326. <li data-name="LuCI.form.DummyValue#cfgvalue"><a href="LuCI.form.DummyValue.html#cfgvalue">cfgvalue</a></li>
  327. <li data-name="LuCI.form.DummyValue#depends"><a href="LuCI.form.DummyValue.html#depends">depends</a></li>
  328. <li data-name="LuCI.form.DummyValue#formvalue"><a href="LuCI.form.DummyValue.html#formvalue">formvalue</a></li>
  329. <li data-name="LuCI.form.DummyValue#getUIElement"><a href="LuCI.form.DummyValue.html#getUIElement">getUIElement</a></li>
  330. <li data-name="LuCI.form.DummyValue#isActive"><a href="LuCI.form.DummyValue.html#isActive">isActive</a></li>
  331. <li data-name="LuCI.form.DummyValue#isValid"><a href="LuCI.form.DummyValue.html#isValid">isValid</a></li>
  332. <li data-name="LuCI.form.DummyValue#load"><a href="LuCI.form.DummyValue.html#load">load</a></li>
  333. <li data-name="LuCI.form.DummyValue#parse"><a href="LuCI.form.DummyValue.html#parse">parse</a></li>
  334. <li data-name="LuCI.form.DummyValue#remove"><a href="LuCI.form.DummyValue.html#remove">remove</a></li>
  335. <li data-name="LuCI.form.DummyValue#stripTags"><a href="LuCI.form.DummyValue.html#stripTags">stripTags</a></li>
  336. <li data-name="LuCI.form.DummyValue#textvalue"><a href="LuCI.form.DummyValue.html#textvalue">textvalue</a></li>
  337. <li data-name="LuCI.form.DummyValue#titleFn"><a href="LuCI.form.DummyValue.html#titleFn">titleFn</a></li>
  338. <li data-name="LuCI.form.DummyValue#value"><a href="LuCI.form.DummyValue.html#value">value</a></li>
  339. <li data-name="LuCI.form.DummyValue#write"><a href="LuCI.form.DummyValue.html#write">write</a></li>
  340. </ul>
  341. <ul class="events itemMembers">
  342. </ul>
  343. </li>
  344. <li class="item" data-name="LuCI.form.DynamicList">
  345. <span class="title">
  346. <a href="LuCI.form.DynamicList.html">LuCI.form.DynamicList</a>
  347. </span>
  348. <ul class="members itemMembers">
  349. <span class="subtitle">Members</span>
  350. <li data-name="LuCI.form.DynamicList#datatype"><a href="LuCI.form.DynamicList.html#datatype">datatype</a></li>
  351. <li data-name="LuCI.form.DynamicList#default"><a href="LuCI.form.DynamicList.html#default">default</a></li>
  352. <li data-name="LuCI.form.DynamicList#editable"><a href="LuCI.form.DynamicList.html#editable">editable</a></li>
  353. <li data-name="LuCI.form.DynamicList#modalonly"><a href="LuCI.form.DynamicList.html#modalonly">modalonly</a></li>
  354. <li data-name="LuCI.form.DynamicList#onchange"><a href="LuCI.form.DynamicList.html#onchange">onchange</a></li>
  355. <li data-name="LuCI.form.DynamicList#optional"><a href="LuCI.form.DynamicList.html#optional">optional</a></li>
  356. <li data-name="LuCI.form.DynamicList#password"><a href="LuCI.form.DynamicList.html#password">password</a></li>
  357. <li data-name="LuCI.form.DynamicList#placeholder"><a href="LuCI.form.DynamicList.html#placeholder">placeholder</a></li>
  358. <li data-name="LuCI.form.DynamicList#readonly"><a href="LuCI.form.DynamicList.html#readonly">readonly</a></li>
  359. <li data-name="LuCI.form.DynamicList#rmempty"><a href="LuCI.form.DynamicList.html#rmempty">rmempty</a></li>
  360. <li data-name="LuCI.form.DynamicList#uciconfig"><a href="LuCI.form.DynamicList.html#uciconfig">uciconfig</a></li>
  361. <li data-name="LuCI.form.DynamicList#ucioption"><a href="LuCI.form.DynamicList.html#ucioption">ucioption</a></li>
  362. <li data-name="LuCI.form.DynamicList#ucisection"><a href="LuCI.form.DynamicList.html#ucisection">ucisection</a></li>
  363. <li data-name="LuCI.form.DynamicList#validate"><a href="LuCI.form.DynamicList.html#validate">validate</a></li>
  364. <li data-name="LuCI.form.DynamicList#width"><a href="LuCI.form.DynamicList.html#width">width</a></li>
  365. </ul>
  366. <ul class="typedefs itemMembers">
  367. </ul>
  368. <ul class="typedefs itemMembers">
  369. </ul>
  370. <ul class="methods itemMembers">
  371. <span class="subtitle">Methods</span>
  372. <li data-name="LuCI.form.DynamicList#append"><a href="LuCI.form.DynamicList.html#append">append</a></li>
  373. <li data-name="LuCI.form.DynamicList#cbid"><a href="LuCI.form.DynamicList.html#cbid">cbid</a></li>
  374. <li data-name="LuCI.form.DynamicList#cfgvalue"><a href="LuCI.form.DynamicList.html#cfgvalue">cfgvalue</a></li>
  375. <li data-name="LuCI.form.DynamicList#depends"><a href="LuCI.form.DynamicList.html#depends">depends</a></li>
  376. <li data-name="LuCI.form.DynamicList#formvalue"><a href="LuCI.form.DynamicList.html#formvalue">formvalue</a></li>
  377. <li data-name="LuCI.form.DynamicList#getUIElement"><a href="LuCI.form.DynamicList.html#getUIElement">getUIElement</a></li>
  378. <li data-name="LuCI.form.DynamicList#isActive"><a href="LuCI.form.DynamicList.html#isActive">isActive</a></li>
  379. <li data-name="LuCI.form.DynamicList#isValid"><a href="LuCI.form.DynamicList.html#isValid">isValid</a></li>
  380. <li data-name="LuCI.form.DynamicList#load"><a href="LuCI.form.DynamicList.html#load">load</a></li>
  381. <li data-name="LuCI.form.DynamicList#parse"><a href="LuCI.form.DynamicList.html#parse">parse</a></li>
  382. <li data-name="LuCI.form.DynamicList#remove"><a href="LuCI.form.DynamicList.html#remove">remove</a></li>
  383. <li data-name="LuCI.form.DynamicList#stripTags"><a href="LuCI.form.DynamicList.html#stripTags">stripTags</a></li>
  384. <li data-name="LuCI.form.DynamicList#textvalue"><a href="LuCI.form.DynamicList.html#textvalue">textvalue</a></li>
  385. <li data-name="LuCI.form.DynamicList#titleFn"><a href="LuCI.form.DynamicList.html#titleFn">titleFn</a></li>
  386. <li data-name="LuCI.form.DynamicList#value"><a href="LuCI.form.DynamicList.html#value">value</a></li>
  387. <li data-name="LuCI.form.DynamicList#write"><a href="LuCI.form.DynamicList.html#write">write</a></li>
  388. </ul>
  389. <ul class="events itemMembers">
  390. </ul>
  391. </li>
  392. <li class="item" data-name="LuCI.form.FileUpload">
  393. <span class="title">
  394. <a href="LuCI.form.FileUpload.html">LuCI.form.FileUpload</a>
  395. </span>
  396. <ul class="members itemMembers">
  397. <span class="subtitle">Members</span>
  398. <li data-name="LuCI.form.FileUpload##enable_remove"><a href="LuCI.form.FileUpload.html#enable_remove">enable_remove</a></li>
  399. <li data-name="LuCI.form.FileUpload##enable_upload"><a href="LuCI.form.FileUpload.html#enable_upload">enable_upload</a></li>
  400. <li data-name="LuCI.form.FileUpload##root_directory"><a href="LuCI.form.FileUpload.html#root_directory">root_directory</a></li>
  401. <li data-name="LuCI.form.FileUpload##show_hidden"><a href="LuCI.form.FileUpload.html#show_hidden">show_hidden</a></li>
  402. <li data-name="LuCI.form.FileUpload#datatype"><a href="LuCI.form.FileUpload.html#datatype">datatype</a></li>
  403. <li data-name="LuCI.form.FileUpload#default"><a href="LuCI.form.FileUpload.html#default">default</a></li>
  404. <li data-name="LuCI.form.FileUpload#editable"><a href="LuCI.form.FileUpload.html#editable">editable</a></li>
  405. <li data-name="LuCI.form.FileUpload#modalonly"><a href="LuCI.form.FileUpload.html#modalonly">modalonly</a></li>
  406. <li data-name="LuCI.form.FileUpload#onchange"><a href="LuCI.form.FileUpload.html#onchange">onchange</a></li>
  407. <li data-name="LuCI.form.FileUpload#optional"><a href="LuCI.form.FileUpload.html#optional">optional</a></li>
  408. <li data-name="LuCI.form.FileUpload#password"><a href="LuCI.form.FileUpload.html#password">password</a></li>
  409. <li data-name="LuCI.form.FileUpload#placeholder"><a href="LuCI.form.FileUpload.html#placeholder">placeholder</a></li>
  410. <li data-name="LuCI.form.FileUpload#readonly"><a href="LuCI.form.FileUpload.html#readonly">readonly</a></li>
  411. <li data-name="LuCI.form.FileUpload#rmempty"><a href="LuCI.form.FileUpload.html#rmempty">rmempty</a></li>
  412. <li data-name="LuCI.form.FileUpload#uciconfig"><a href="LuCI.form.FileUpload.html#uciconfig">uciconfig</a></li>
  413. <li data-name="LuCI.form.FileUpload#ucioption"><a href="LuCI.form.FileUpload.html#ucioption">ucioption</a></li>
  414. <li data-name="LuCI.form.FileUpload#ucisection"><a href="LuCI.form.FileUpload.html#ucisection">ucisection</a></li>
  415. <li data-name="LuCI.form.FileUpload#validate"><a href="LuCI.form.FileUpload.html#validate">validate</a></li>
  416. <li data-name="LuCI.form.FileUpload#width"><a href="LuCI.form.FileUpload.html#width">width</a></li>
  417. </ul>
  418. <ul class="typedefs itemMembers">
  419. </ul>
  420. <ul class="typedefs itemMembers">
  421. </ul>
  422. <ul class="methods itemMembers">
  423. <span class="subtitle">Methods</span>
  424. <li data-name="LuCI.form.FileUpload#append"><a href="LuCI.form.FileUpload.html#append">append</a></li>
  425. <li data-name="LuCI.form.FileUpload#cbid"><a href="LuCI.form.FileUpload.html#cbid">cbid</a></li>
  426. <li data-name="LuCI.form.FileUpload#cfgvalue"><a href="LuCI.form.FileUpload.html#cfgvalue">cfgvalue</a></li>
  427. <li data-name="LuCI.form.FileUpload#depends"><a href="LuCI.form.FileUpload.html#depends">depends</a></li>
  428. <li data-name="LuCI.form.FileUpload#formvalue"><a href="LuCI.form.FileUpload.html#formvalue">formvalue</a></li>
  429. <li data-name="LuCI.form.FileUpload#getUIElement"><a href="LuCI.form.FileUpload.html#getUIElement">getUIElement</a></li>
  430. <li data-name="LuCI.form.FileUpload#isActive"><a href="LuCI.form.FileUpload.html#isActive">isActive</a></li>
  431. <li data-name="LuCI.form.FileUpload#isValid"><a href="LuCI.form.FileUpload.html#isValid">isValid</a></li>
  432. <li data-name="LuCI.form.FileUpload#load"><a href="LuCI.form.FileUpload.html#load">load</a></li>
  433. <li data-name="LuCI.form.FileUpload#parse"><a href="LuCI.form.FileUpload.html#parse">parse</a></li>
  434. <li data-name="LuCI.form.FileUpload#remove"><a href="LuCI.form.FileUpload.html#remove">remove</a></li>
  435. <li data-name="LuCI.form.FileUpload#stripTags"><a href="LuCI.form.FileUpload.html#stripTags">stripTags</a></li>
  436. <li data-name="LuCI.form.FileUpload#textvalue"><a href="LuCI.form.FileUpload.html#textvalue">textvalue</a></li>
  437. <li data-name="LuCI.form.FileUpload#titleFn"><a href="LuCI.form.FileUpload.html#titleFn">titleFn</a></li>
  438. <li data-name="LuCI.form.FileUpload#value"><a href="LuCI.form.FileUpload.html#value">value</a></li>
  439. <li data-name="LuCI.form.FileUpload#write"><a href="LuCI.form.FileUpload.html#write">write</a></li>
  440. </ul>
  441. <ul class="events itemMembers">
  442. </ul>
  443. </li>
  444. <li class="item" data-name="LuCI.form.FlagValue">
  445. <span class="title">
  446. <a href="LuCI.form.FlagValue.html">LuCI.form.FlagValue</a>
  447. </span>
  448. <ul class="members itemMembers">
  449. <span class="subtitle">Members</span>
  450. <li data-name="LuCI.form.FlagValue##disabled"><a href="LuCI.form.FlagValue.html#disabled">disabled</a></li>
  451. <li data-name="LuCI.form.FlagValue##enabled"><a href="LuCI.form.FlagValue.html#enabled">enabled</a></li>
  452. <li data-name="LuCI.form.FlagValue#datatype"><a href="LuCI.form.FlagValue.html#datatype">datatype</a></li>
  453. <li data-name="LuCI.form.FlagValue#default"><a href="LuCI.form.FlagValue.html#default">default</a></li>
  454. <li data-name="LuCI.form.FlagValue#editable"><a href="LuCI.form.FlagValue.html#editable">editable</a></li>
  455. <li data-name="LuCI.form.FlagValue#modalonly"><a href="LuCI.form.FlagValue.html#modalonly">modalonly</a></li>
  456. <li data-name="LuCI.form.FlagValue#onchange"><a href="LuCI.form.FlagValue.html#onchange">onchange</a></li>
  457. <li data-name="LuCI.form.FlagValue#optional"><a href="LuCI.form.FlagValue.html#optional">optional</a></li>
  458. <li data-name="LuCI.form.FlagValue#password"><a href="LuCI.form.FlagValue.html#password">password</a></li>
  459. <li data-name="LuCI.form.FlagValue#placeholder"><a href="LuCI.form.FlagValue.html#placeholder">placeholder</a></li>
  460. <li data-name="LuCI.form.FlagValue#readonly"><a href="LuCI.form.FlagValue.html#readonly">readonly</a></li>
  461. <li data-name="LuCI.form.FlagValue#rmempty"><a href="LuCI.form.FlagValue.html#rmempty">rmempty</a></li>
  462. <li data-name="LuCI.form.FlagValue#uciconfig"><a href="LuCI.form.FlagValue.html#uciconfig">uciconfig</a></li>
  463. <li data-name="LuCI.form.FlagValue#ucioption"><a href="LuCI.form.FlagValue.html#ucioption">ucioption</a></li>
  464. <li data-name="LuCI.form.FlagValue#ucisection"><a href="LuCI.form.FlagValue.html#ucisection">ucisection</a></li>
  465. <li data-name="LuCI.form.FlagValue#validate"><a href="LuCI.form.FlagValue.html#validate">validate</a></li>
  466. <li data-name="LuCI.form.FlagValue#width"><a href="LuCI.form.FlagValue.html#width">width</a></li>
  467. </ul>
  468. <ul class="typedefs itemMembers">
  469. </ul>
  470. <ul class="typedefs itemMembers">
  471. </ul>
  472. <ul class="methods itemMembers">
  473. <span class="subtitle">Methods</span>
  474. <li data-name="LuCI.form.FlagValue#append"><a href="LuCI.form.FlagValue.html#append">append</a></li>
  475. <li data-name="LuCI.form.FlagValue#cbid"><a href="LuCI.form.FlagValue.html#cbid">cbid</a></li>
  476. <li data-name="LuCI.form.FlagValue#cfgvalue"><a href="LuCI.form.FlagValue.html#cfgvalue">cfgvalue</a></li>
  477. <li data-name="LuCI.form.FlagValue#depends"><a href="LuCI.form.FlagValue.html#depends">depends</a></li>
  478. <li data-name="LuCI.form.FlagValue#formvalue"><a href="LuCI.form.FlagValue.html#formvalue">formvalue</a></li>
  479. <li data-name="LuCI.form.FlagValue#getUIElement"><a href="LuCI.form.FlagValue.html#getUIElement">getUIElement</a></li>
  480. <li data-name="LuCI.form.FlagValue#isActive"><a href="LuCI.form.FlagValue.html#isActive">isActive</a></li>
  481. <li data-name="LuCI.form.FlagValue#isValid"><a href="LuCI.form.FlagValue.html#isValid">isValid</a></li>
  482. <li data-name="LuCI.form.FlagValue#load"><a href="LuCI.form.FlagValue.html#load">load</a></li>
  483. <li data-name="LuCI.form.FlagValue#parse"><a href="LuCI.form.FlagValue.html#parse">parse</a></li>
  484. <li data-name="LuCI.form.FlagValue#remove"><a href="LuCI.form.FlagValue.html#remove">remove</a></li>
  485. <li data-name="LuCI.form.FlagValue#stripTags"><a href="LuCI.form.FlagValue.html#stripTags">stripTags</a></li>
  486. <li data-name="LuCI.form.FlagValue#textvalue"><a href="LuCI.form.FlagValue.html#textvalue">textvalue</a></li>
  487. <li data-name="LuCI.form.FlagValue#titleFn"><a href="LuCI.form.FlagValue.html#titleFn">titleFn</a></li>
  488. <li data-name="LuCI.form.FlagValue#value"><a href="LuCI.form.FlagValue.html#value">value</a></li>
  489. <li data-name="LuCI.form.FlagValue#write"><a href="LuCI.form.FlagValue.html#write">write</a></li>
  490. </ul>
  491. <ul class="events itemMembers">
  492. </ul>
  493. </li>
  494. <li class="item" data-name="LuCI.form.GridSection">
  495. <span class="title">
  496. <a href="LuCI.form.GridSection.html">LuCI.form.GridSection</a>
  497. </span>
  498. <ul class="members itemMembers">
  499. <span class="subtitle">Members</span>
  500. <li data-name="LuCI.form.GridSection#addbtntitle"><a href="LuCI.form.GridSection.html#addbtntitle">addbtntitle</a></li>
  501. <li data-name="LuCI.form.GridSection#addremove"><a href="LuCI.form.GridSection.html#addremove">addremove</a></li>
  502. <li data-name="LuCI.form.GridSection#anonymous"><a href="LuCI.form.GridSection.html#anonymous">anonymous</a></li>
  503. <li data-name="LuCI.form.GridSection#extedit"><a href="LuCI.form.GridSection.html#extedit">extedit</a></li>
  504. <li data-name="LuCI.form.GridSection#max_cols"><a href="LuCI.form.GridSection.html#max_cols">max_cols</a></li>
  505. <li data-name="LuCI.form.GridSection#modaltitle"><a href="LuCI.form.GridSection.html#modaltitle">modaltitle</a></li>
  506. <li data-name="LuCI.form.GridSection#nodescriptions"><a href="LuCI.form.GridSection.html#nodescriptions">nodescriptions</a></li>
  507. <li data-name="LuCI.form.GridSection#parentoption"><a href="LuCI.form.GridSection.html#parentoption">parentoption</a></li>
  508. <li data-name="LuCI.form.GridSection#rowcolors"><a href="LuCI.form.GridSection.html#rowcolors">rowcolors</a></li>
  509. <li data-name="LuCI.form.GridSection#sectiontitle"><a href="LuCI.form.GridSection.html#sectiontitle">sectiontitle</a></li>
  510. <li data-name="LuCI.form.GridSection#sortable"><a href="LuCI.form.GridSection.html#sortable">sortable</a></li>
  511. <li data-name="LuCI.form.GridSection#tabbed"><a href="LuCI.form.GridSection.html#tabbed">tabbed</a></li>
  512. <li data-name="LuCI.form.GridSection#uciconfig"><a href="LuCI.form.GridSection.html#uciconfig">uciconfig</a></li>
  513. </ul>
  514. <ul class="typedefs itemMembers">
  515. </ul>
  516. <ul class="typedefs itemMembers">
  517. </ul>
  518. <ul class="methods itemMembers">
  519. <span class="subtitle">Methods</span>
  520. <li data-name="LuCI.form.GridSection#addModalOptions"><a href="LuCI.form.GridSection.html#addModalOptions">addModalOptions</a></li>
  521. <li data-name="LuCI.form.GridSection#append"><a href="LuCI.form.GridSection.html#append">append</a></li>
  522. <li data-name="LuCI.form.GridSection#cfgvalue"><a href="LuCI.form.GridSection.html#cfgvalue">cfgvalue</a></li>
  523. <li data-name="LuCI.form.GridSection#filter"><a href="LuCI.form.GridSection.html#filter">filter</a></li>
  524. <li data-name="LuCI.form.GridSection#formvalue"><a href="LuCI.form.GridSection.html#formvalue">formvalue</a></li>
  525. <li data-name="LuCI.form.GridSection#getOption"><a href="LuCI.form.GridSection.html#getOption">getOption</a></li>
  526. <li data-name="LuCI.form.GridSection#getUIElement"><a href="LuCI.form.GridSection.html#getUIElement">getUIElement</a></li>
  527. <li data-name="LuCI.form.GridSection#load"><a href="LuCI.form.GridSection.html#load">load</a></li>
  528. <li data-name="LuCI.form.GridSection#option"><a href="LuCI.form.GridSection.html#option">option</a></li>
  529. <li data-name="LuCI.form.GridSection#parse"><a href="LuCI.form.GridSection.html#parse">parse</a></li>
  530. <li data-name="LuCI.form.GridSection#stripTags"><a href="LuCI.form.GridSection.html#stripTags">stripTags</a></li>
  531. <li data-name="LuCI.form.GridSection#tab"><a href="LuCI.form.GridSection.html#tab">tab</a></li>
  532. <li data-name="LuCI.form.GridSection#taboption"><a href="LuCI.form.GridSection.html#taboption">taboption</a></li>
  533. <li data-name="LuCI.form.GridSection#titleFn"><a href="LuCI.form.GridSection.html#titleFn">titleFn</a></li>
  534. </ul>
  535. <ul class="events itemMembers">
  536. </ul>
  537. </li>
  538. <li class="item" data-name="LuCI.form.HiddenValue">
  539. <span class="title">
  540. <a href="LuCI.form.HiddenValue.html">LuCI.form.HiddenValue</a>
  541. </span>
  542. <ul class="members itemMembers">
  543. <span class="subtitle">Members</span>
  544. <li data-name="LuCI.form.HiddenValue#datatype"><a href="LuCI.form.HiddenValue.html#datatype">datatype</a></li>
  545. <li data-name="LuCI.form.HiddenValue#default"><a href="LuCI.form.HiddenValue.html#default">default</a></li>
  546. <li data-name="LuCI.form.HiddenValue#editable"><a href="LuCI.form.HiddenValue.html#editable">editable</a></li>
  547. <li data-name="LuCI.form.HiddenValue#modalonly"><a href="LuCI.form.HiddenValue.html#modalonly">modalonly</a></li>
  548. <li data-name="LuCI.form.HiddenValue#onchange"><a href="LuCI.form.HiddenValue.html#onchange">onchange</a></li>
  549. <li data-name="LuCI.form.HiddenValue#optional"><a href="LuCI.form.HiddenValue.html#optional">optional</a></li>
  550. <li data-name="LuCI.form.HiddenValue#password"><a href="LuCI.form.HiddenValue.html#password">password</a></li>
  551. <li data-name="LuCI.form.HiddenValue#placeholder"><a href="LuCI.form.HiddenValue.html#placeholder">placeholder</a></li>
  552. <li data-name="LuCI.form.HiddenValue#readonly"><a href="LuCI.form.HiddenValue.html#readonly">readonly</a></li>
  553. <li data-name="LuCI.form.HiddenValue#rmempty"><a href="LuCI.form.HiddenValue.html#rmempty">rmempty</a></li>
  554. <li data-name="LuCI.form.HiddenValue#uciconfig"><a href="LuCI.form.HiddenValue.html#uciconfig">uciconfig</a></li>
  555. <li data-name="LuCI.form.HiddenValue#ucioption"><a href="LuCI.form.HiddenValue.html#ucioption">ucioption</a></li>
  556. <li data-name="LuCI.form.HiddenValue#ucisection"><a href="LuCI.form.HiddenValue.html#ucisection">ucisection</a></li>
  557. <li data-name="LuCI.form.HiddenValue#validate"><a href="LuCI.form.HiddenValue.html#validate">validate</a></li>
  558. <li data-name="LuCI.form.HiddenValue#width"><a href="LuCI.form.HiddenValue.html#width">width</a></li>
  559. </ul>
  560. <ul class="typedefs itemMembers">
  561. </ul>
  562. <ul class="typedefs itemMembers">
  563. </ul>
  564. <ul class="methods itemMembers">
  565. <span class="subtitle">Methods</span>
  566. <li data-name="LuCI.form.HiddenValue#append"><a href="LuCI.form.HiddenValue.html#append">append</a></li>
  567. <li data-name="LuCI.form.HiddenValue#cbid"><a href="LuCI.form.HiddenValue.html#cbid">cbid</a></li>
  568. <li data-name="LuCI.form.HiddenValue#cfgvalue"><a href="LuCI.form.HiddenValue.html#cfgvalue">cfgvalue</a></li>
  569. <li data-name="LuCI.form.HiddenValue#depends"><a href="LuCI.form.HiddenValue.html#depends">depends</a></li>
  570. <li data-name="LuCI.form.HiddenValue#formvalue"><a href="LuCI.form.HiddenValue.html#formvalue">formvalue</a></li>
  571. <li data-name="LuCI.form.HiddenValue#getUIElement"><a href="LuCI.form.HiddenValue.html#getUIElement">getUIElement</a></li>
  572. <li data-name="LuCI.form.HiddenValue#isActive"><a href="LuCI.form.HiddenValue.html#isActive">isActive</a></li>
  573. <li data-name="LuCI.form.HiddenValue#isValid"><a href="LuCI.form.HiddenValue.html#isValid">isValid</a></li>
  574. <li data-name="LuCI.form.HiddenValue#load"><a href="LuCI.form.HiddenValue.html#load">load</a></li>
  575. <li data-name="LuCI.form.HiddenValue#parse"><a href="LuCI.form.HiddenValue.html#parse">parse</a></li>
  576. <li data-name="LuCI.form.HiddenValue#remove"><a href="LuCI.form.HiddenValue.html#remove">remove</a></li>
  577. <li data-name="LuCI.form.HiddenValue#stripTags"><a href="LuCI.form.HiddenValue.html#stripTags">stripTags</a></li>
  578. <li data-name="LuCI.form.HiddenValue#textvalue"><a href="LuCI.form.HiddenValue.html#textvalue">textvalue</a></li>
  579. <li data-name="LuCI.form.HiddenValue#titleFn"><a href="LuCI.form.HiddenValue.html#titleFn">titleFn</a></li>
  580. <li data-name="LuCI.form.HiddenValue#value"><a href="LuCI.form.HiddenValue.html#value">value</a></li>
  581. <li data-name="LuCI.form.HiddenValue#write"><a href="LuCI.form.HiddenValue.html#write">write</a></li>
  582. </ul>
  583. <ul class="events itemMembers">
  584. </ul>
  585. </li>
  586. <li class="item" data-name="LuCI.form.JSONMap">
  587. <span class="title">
  588. <a href="LuCI.form.JSONMap.html">LuCI.form.JSONMap</a>
  589. </span>
  590. <ul class="members itemMembers">
  591. <span class="subtitle">Members</span>
  592. <li data-name="LuCI.form.JSONMap#readonly"><a href="LuCI.form.JSONMap.html#readonly">readonly</a></li>
  593. </ul>
  594. <ul class="typedefs itemMembers">
  595. </ul>
  596. <ul class="typedefs itemMembers">
  597. </ul>
  598. <ul class="methods itemMembers">
  599. <span class="subtitle">Methods</span>
  600. <li data-name="LuCI.form.JSONMap#append"><a href="LuCI.form.JSONMap.html#append">append</a></li>
  601. <li data-name="LuCI.form.JSONMap#chain"><a href="LuCI.form.JSONMap.html#chain">chain</a></li>
  602. <li data-name="LuCI.form.JSONMap#findElement"><a href="LuCI.form.JSONMap.html#findElement">findElement</a></li>
  603. <li data-name="LuCI.form.JSONMap#findElements"><a href="LuCI.form.JSONMap.html#findElements">findElements</a></li>
  604. <li data-name="LuCI.form.JSONMap#load"><a href="LuCI.form.JSONMap.html#load">load</a></li>
  605. <li data-name="LuCI.form.JSONMap#lookupOption"><a href="LuCI.form.JSONMap.html#lookupOption">lookupOption</a></li>
  606. <li data-name="LuCI.form.JSONMap#parse"><a href="LuCI.form.JSONMap.html#parse">parse</a></li>
  607. <li data-name="LuCI.form.JSONMap#render"><a href="LuCI.form.JSONMap.html#render">render</a></li>
  608. <li data-name="LuCI.form.JSONMap#reset"><a href="LuCI.form.JSONMap.html#reset">reset</a></li>
  609. <li data-name="LuCI.form.JSONMap#save"><a href="LuCI.form.JSONMap.html#save">save</a></li>
  610. <li data-name="LuCI.form.JSONMap#section"><a href="LuCI.form.JSONMap.html#section">section</a></li>
  611. <li data-name="LuCI.form.JSONMap#stripTags"><a href="LuCI.form.JSONMap.html#stripTags">stripTags</a></li>
  612. <li data-name="LuCI.form.JSONMap#titleFn"><a href="LuCI.form.JSONMap.html#titleFn">titleFn</a></li>
  613. </ul>
  614. <ul class="events itemMembers">
  615. </ul>
  616. </li>
  617. <li class="item" data-name="LuCI.form.ListValue">
  618. <span class="title">
  619. <a href="LuCI.form.ListValue.html">LuCI.form.ListValue</a>
  620. </span>
  621. <ul class="members itemMembers">
  622. <span class="subtitle">Members</span>
  623. <li data-name="LuCI.form.ListValue##orientation"><a href="LuCI.form.ListValue.html#orientation">orientation</a></li>
  624. <li data-name="LuCI.form.ListValue##size"><a href="LuCI.form.ListValue.html#size">size</a></li>
  625. <li data-name="LuCI.form.ListValue##widget"><a href="LuCI.form.ListValue.html#widget">widget</a></li>
  626. <li data-name="LuCI.form.ListValue#datatype"><a href="LuCI.form.ListValue.html#datatype">datatype</a></li>
  627. <li data-name="LuCI.form.ListValue#default"><a href="LuCI.form.ListValue.html#default">default</a></li>
  628. <li data-name="LuCI.form.ListValue#editable"><a href="LuCI.form.ListValue.html#editable">editable</a></li>
  629. <li data-name="LuCI.form.ListValue#modalonly"><a href="LuCI.form.ListValue.html#modalonly">modalonly</a></li>
  630. <li data-name="LuCI.form.ListValue#onchange"><a href="LuCI.form.ListValue.html#onchange">onchange</a></li>
  631. <li data-name="LuCI.form.ListValue#optional"><a href="LuCI.form.ListValue.html#optional">optional</a></li>
  632. <li data-name="LuCI.form.ListValue#password"><a href="LuCI.form.ListValue.html#password">password</a></li>
  633. <li data-name="LuCI.form.ListValue#placeholder"><a href="LuCI.form.ListValue.html#placeholder">placeholder</a></li>
  634. <li data-name="LuCI.form.ListValue#readonly"><a href="LuCI.form.ListValue.html#readonly">readonly</a></li>
  635. <li data-name="LuCI.form.ListValue#rmempty"><a href="LuCI.form.ListValue.html#rmempty">rmempty</a></li>
  636. <li data-name="LuCI.form.ListValue#uciconfig"><a href="LuCI.form.ListValue.html#uciconfig">uciconfig</a></li>
  637. <li data-name="LuCI.form.ListValue#ucioption"><a href="LuCI.form.ListValue.html#ucioption">ucioption</a></li>
  638. <li data-name="LuCI.form.ListValue#ucisection"><a href="LuCI.form.ListValue.html#ucisection">ucisection</a></li>
  639. <li data-name="LuCI.form.ListValue#validate"><a href="LuCI.form.ListValue.html#validate">validate</a></li>
  640. <li data-name="LuCI.form.ListValue#width"><a href="LuCI.form.ListValue.html#width">width</a></li>
  641. </ul>
  642. <ul class="typedefs itemMembers">
  643. </ul>
  644. <ul class="typedefs itemMembers">
  645. </ul>
  646. <ul class="methods itemMembers">
  647. <span class="subtitle">Methods</span>
  648. <li data-name="LuCI.form.ListValue#append"><a href="LuCI.form.ListValue.html#append">append</a></li>
  649. <li data-name="LuCI.form.ListValue#cbid"><a href="LuCI.form.ListValue.html#cbid">cbid</a></li>
  650. <li data-name="LuCI.form.ListValue#cfgvalue"><a href="LuCI.form.ListValue.html#cfgvalue">cfgvalue</a></li>
  651. <li data-name="LuCI.form.ListValue#depends"><a href="LuCI.form.ListValue.html#depends">depends</a></li>
  652. <li data-name="LuCI.form.ListValue#formvalue"><a href="LuCI.form.ListValue.html#formvalue">formvalue</a></li>
  653. <li data-name="LuCI.form.ListValue#getUIElement"><a href="LuCI.form.ListValue.html#getUIElement">getUIElement</a></li>
  654. <li data-name="LuCI.form.ListValue#isActive"><a href="LuCI.form.ListValue.html#isActive">isActive</a></li>
  655. <li data-name="LuCI.form.ListValue#isValid"><a href="LuCI.form.ListValue.html#isValid">isValid</a></li>
  656. <li data-name="LuCI.form.ListValue#load"><a href="LuCI.form.ListValue.html#load">load</a></li>
  657. <li data-name="LuCI.form.ListValue#parse"><a href="LuCI.form.ListValue.html#parse">parse</a></li>
  658. <li data-name="LuCI.form.ListValue#remove"><a href="LuCI.form.ListValue.html#remove">remove</a></li>
  659. <li data-name="LuCI.form.ListValue#stripTags"><a href="LuCI.form.ListValue.html#stripTags">stripTags</a></li>
  660. <li data-name="LuCI.form.ListValue#textvalue"><a href="LuCI.form.ListValue.html#textvalue">textvalue</a></li>
  661. <li data-name="LuCI.form.ListValue#titleFn"><a href="LuCI.form.ListValue.html#titleFn">titleFn</a></li>
  662. <li data-name="LuCI.form.ListValue#value"><a href="LuCI.form.ListValue.html#value">value</a></li>
  663. <li data-name="LuCI.form.ListValue#write"><a href="LuCI.form.ListValue.html#write">write</a></li>
  664. </ul>
  665. <ul class="events itemMembers">
  666. </ul>
  667. </li>
  668. <li class="item" data-name="LuCI.form.Map">
  669. <span class="title">
  670. <a href="LuCI.form.Map.html">LuCI.form.Map</a>
  671. </span>
  672. <ul class="members itemMembers">
  673. <span class="subtitle">Members</span>
  674. <li data-name="LuCI.form.Map##readonly"><a href="LuCI.form.Map.html#readonly">readonly</a></li>
  675. </ul>
  676. <ul class="typedefs itemMembers">
  677. </ul>
  678. <ul class="typedefs itemMembers">
  679. </ul>
  680. <ul class="methods itemMembers">
  681. <span class="subtitle">Methods</span>
  682. <li data-name="LuCI.form.Map#append"><a href="LuCI.form.Map.html#append">append</a></li>
  683. <li data-name="LuCI.form.Map#chain"><a href="LuCI.form.Map.html#chain">chain</a></li>
  684. <li data-name="LuCI.form.Map#findElement"><a href="LuCI.form.Map.html#findElement">findElement</a></li>
  685. <li data-name="LuCI.form.Map#findElements"><a href="LuCI.form.Map.html#findElements">findElements</a></li>
  686. <li data-name="LuCI.form.Map#load"><a href="LuCI.form.Map.html#load">load</a></li>
  687. <li data-name="LuCI.form.Map#lookupOption"><a href="LuCI.form.Map.html#lookupOption">lookupOption</a></li>
  688. <li data-name="LuCI.form.Map#parse"><a href="LuCI.form.Map.html#parse">parse</a></li>
  689. <li data-name="LuCI.form.Map#render"><a href="LuCI.form.Map.html#render">render</a></li>
  690. <li data-name="LuCI.form.Map#reset"><a href="LuCI.form.Map.html#reset">reset</a></li>
  691. <li data-name="LuCI.form.Map#save"><a href="LuCI.form.Map.html#save">save</a></li>
  692. <li data-name="LuCI.form.Map#section"><a href="LuCI.form.Map.html#section">section</a></li>
  693. <li data-name="LuCI.form.Map#stripTags"><a href="LuCI.form.Map.html#stripTags">stripTags</a></li>
  694. <li data-name="LuCI.form.Map#titleFn"><a href="LuCI.form.Map.html#titleFn">titleFn</a></li>
  695. </ul>
  696. <ul class="events itemMembers">
  697. </ul>
  698. </li>
  699. <li class="item" data-name="LuCI.form.MultiValue">
  700. <span class="title">
  701. <a href="LuCI.form.MultiValue.html">LuCI.form.MultiValue</a>
  702. </span>
  703. <ul class="members itemMembers">
  704. <span class="subtitle">Members</span>
  705. <li data-name="LuCI.form.MultiValue##display_size"><a href="LuCI.form.MultiValue.html#display_size">display_size</a></li>
  706. <li data-name="LuCI.form.MultiValue##dropdown_size"><a href="LuCI.form.MultiValue.html#dropdown_size">dropdown_size</a></li>
  707. <li data-name="LuCI.form.MultiValue#datatype"><a href="LuCI.form.MultiValue.html#datatype">datatype</a></li>
  708. <li data-name="LuCI.form.MultiValue#default"><a href="LuCI.form.MultiValue.html#default">default</a></li>
  709. <li data-name="LuCI.form.MultiValue#editable"><a href="LuCI.form.MultiValue.html#editable">editable</a></li>
  710. <li data-name="LuCI.form.MultiValue#modalonly"><a href="LuCI.form.MultiValue.html#modalonly">modalonly</a></li>
  711. <li data-name="LuCI.form.MultiValue#onchange"><a href="LuCI.form.MultiValue.html#onchange">onchange</a></li>
  712. <li data-name="LuCI.form.MultiValue#optional"><a href="LuCI.form.MultiValue.html#optional">optional</a></li>
  713. <li data-name="LuCI.form.MultiValue#password"><a href="LuCI.form.MultiValue.html#password">password</a></li>
  714. <li data-name="LuCI.form.MultiValue#placeholder"><a href="LuCI.form.MultiValue.html#placeholder">placeholder</a></li>
  715. <li data-name="LuCI.form.MultiValue#readonly"><a href="LuCI.form.MultiValue.html#readonly">readonly</a></li>
  716. <li data-name="LuCI.form.MultiValue#rmempty"><a href="LuCI.form.MultiValue.html#rmempty">rmempty</a></li>
  717. <li data-name="LuCI.form.MultiValue#uciconfig"><a href="LuCI.form.MultiValue.html#uciconfig">uciconfig</a></li>
  718. <li data-name="LuCI.form.MultiValue#ucioption"><a href="LuCI.form.MultiValue.html#ucioption">ucioption</a></li>
  719. <li data-name="LuCI.form.MultiValue#ucisection"><a href="LuCI.form.MultiValue.html#ucisection">ucisection</a></li>
  720. <li data-name="LuCI.form.MultiValue#validate"><a href="LuCI.form.MultiValue.html#validate">validate</a></li>
  721. <li data-name="LuCI.form.MultiValue#width"><a href="LuCI.form.MultiValue.html#width">width</a></li>
  722. </ul>
  723. <ul class="typedefs itemMembers">
  724. </ul>
  725. <ul class="typedefs itemMembers">
  726. </ul>
  727. <ul class="methods itemMembers">
  728. <span class="subtitle">Methods</span>
  729. <li data-name="LuCI.form.MultiValue#append"><a href="LuCI.form.MultiValue.html#append">append</a></li>
  730. <li data-name="LuCI.form.MultiValue#cbid"><a href="LuCI.form.MultiValue.html#cbid">cbid</a></li>
  731. <li data-name="LuCI.form.MultiValue#cfgvalue"><a href="LuCI.form.MultiValue.html#cfgvalue">cfgvalue</a></li>
  732. <li data-name="LuCI.form.MultiValue#depends"><a href="LuCI.form.MultiValue.html#depends">depends</a></li>
  733. <li data-name="LuCI.form.MultiValue#formvalue"><a href="LuCI.form.MultiValue.html#formvalue">formvalue</a></li>
  734. <li data-name="LuCI.form.MultiValue#getUIElement"><a href="LuCI.form.MultiValue.html#getUIElement">getUIElement</a></li>
  735. <li data-name="LuCI.form.MultiValue#isActive"><a href="LuCI.form.MultiValue.html#isActive">isActive</a></li>
  736. <li data-name="LuCI.form.MultiValue#isValid"><a href="LuCI.form.MultiValue.html#isValid">isValid</a></li>
  737. <li data-name="LuCI.form.MultiValue#load"><a href="LuCI.form.MultiValue.html#load">load</a></li>
  738. <li data-name="LuCI.form.MultiValue#parse"><a href="LuCI.form.MultiValue.html#parse">parse</a></li>
  739. <li data-name="LuCI.form.MultiValue#remove"><a href="LuCI.form.MultiValue.html#remove">remove</a></li>
  740. <li data-name="LuCI.form.MultiValue#stripTags"><a href="LuCI.form.MultiValue.html#stripTags">stripTags</a></li>
  741. <li data-name="LuCI.form.MultiValue#textvalue"><a href="LuCI.form.MultiValue.html#textvalue">textvalue</a></li>
  742. <li data-name="LuCI.form.MultiValue#titleFn"><a href="LuCI.form.MultiValue.html#titleFn">titleFn</a></li>
  743. <li data-name="LuCI.form.MultiValue#value"><a href="LuCI.form.MultiValue.html#value">value</a></li>
  744. <li data-name="LuCI.form.MultiValue#write"><a href="LuCI.form.MultiValue.html#write">write</a></li>
  745. </ul>
  746. <ul class="events itemMembers">
  747. </ul>
  748. </li>
  749. <li class="item" data-name="LuCI.form.NamedSection">
  750. <span class="title">
  751. <a href="LuCI.form.NamedSection.html">LuCI.form.NamedSection</a>
  752. </span>
  753. <ul class="members itemMembers">
  754. <span class="subtitle">Members</span>
  755. <li data-name="LuCI.form.NamedSection##addremove"><a href="LuCI.form.NamedSection.html#addremove">addremove</a></li>
  756. <li data-name="LuCI.form.NamedSection##uciconfig"><a href="LuCI.form.NamedSection.html#uciconfig">uciconfig</a></li>
  757. <li data-name="LuCI.form.NamedSection#parentoption"><a href="LuCI.form.NamedSection.html#parentoption">parentoption</a></li>
  758. </ul>
  759. <ul class="typedefs itemMembers">
  760. </ul>
  761. <ul class="typedefs itemMembers">
  762. </ul>
  763. <ul class="methods itemMembers">
  764. <span class="subtitle">Methods</span>
  765. <li data-name="LuCI.form.NamedSection#append"><a href="LuCI.form.NamedSection.html#append">append</a></li>
  766. <li data-name="LuCI.form.NamedSection#cfgsections"><a href="LuCI.form.NamedSection.html#cfgsections">cfgsections</a></li>
  767. <li data-name="LuCI.form.NamedSection#cfgvalue"><a href="LuCI.form.NamedSection.html#cfgvalue">cfgvalue</a></li>
  768. <li data-name="LuCI.form.NamedSection#filter"><a href="LuCI.form.NamedSection.html#filter">filter</a></li>
  769. <li data-name="LuCI.form.NamedSection#formvalue"><a href="LuCI.form.NamedSection.html#formvalue">formvalue</a></li>
  770. <li data-name="LuCI.form.NamedSection#getOption"><a href="LuCI.form.NamedSection.html#getOption">getOption</a></li>
  771. <li data-name="LuCI.form.NamedSection#getUIElement"><a href="LuCI.form.NamedSection.html#getUIElement">getUIElement</a></li>
  772. <li data-name="LuCI.form.NamedSection#load"><a href="LuCI.form.NamedSection.html#load">load</a></li>
  773. <li data-name="LuCI.form.NamedSection#option"><a href="LuCI.form.NamedSection.html#option">option</a></li>
  774. <li data-name="LuCI.form.NamedSection#parse"><a href="LuCI.form.NamedSection.html#parse">parse</a></li>
  775. <li data-name="LuCI.form.NamedSection#render"><a href="LuCI.form.NamedSection.html#render">render</a></li>
  776. <li data-name="LuCI.form.NamedSection#stripTags"><a href="LuCI.form.NamedSection.html#stripTags">stripTags</a></li>
  777. <li data-name="LuCI.form.NamedSection#tab"><a href="LuCI.form.NamedSection.html#tab">tab</a></li>
  778. <li data-name="LuCI.form.NamedSection#taboption"><a href="LuCI.form.NamedSection.html#taboption">taboption</a></li>
  779. <li data-name="LuCI.form.NamedSection#titleFn"><a href="LuCI.form.NamedSection.html#titleFn">titleFn</a></li>
  780. </ul>
  781. <ul class="events itemMembers">
  782. </ul>
  783. </li>
  784. <li class="item" data-name="LuCI.form.SectionValue">
  785. <span class="title">
  786. <a href="LuCI.form.SectionValue.html">LuCI.form.SectionValue</a>
  787. </span>
  788. <ul class="members itemMembers">
  789. <span class="subtitle">Members</span>
  790. <li data-name="LuCI.form.SectionValue##subsection"><a href="LuCI.form.SectionValue.html#subsection">subsection</a></li>
  791. <li data-name="LuCI.form.SectionValue#datatype"><a href="LuCI.form.SectionValue.html#datatype">datatype</a></li>
  792. <li data-name="LuCI.form.SectionValue#default"><a href="LuCI.form.SectionValue.html#default">default</a></li>
  793. <li data-name="LuCI.form.SectionValue#editable"><a href="LuCI.form.SectionValue.html#editable">editable</a></li>
  794. <li data-name="LuCI.form.SectionValue#modalonly"><a href="LuCI.form.SectionValue.html#modalonly">modalonly</a></li>
  795. <li data-name="LuCI.form.SectionValue#onchange"><a href="LuCI.form.SectionValue.html#onchange">onchange</a></li>
  796. <li data-name="LuCI.form.SectionValue#optional"><a href="LuCI.form.SectionValue.html#optional">optional</a></li>
  797. <li data-name="LuCI.form.SectionValue#password"><a href="LuCI.form.SectionValue.html#password">password</a></li>
  798. <li data-name="LuCI.form.SectionValue#placeholder"><a href="LuCI.form.SectionValue.html#placeholder">placeholder</a></li>
  799. <li data-name="LuCI.form.SectionValue#readonly"><a href="LuCI.form.SectionValue.html#readonly">readonly</a></li>
  800. <li data-name="LuCI.form.SectionValue#rmempty"><a href="LuCI.form.SectionValue.html#rmempty">rmempty</a></li>
  801. <li data-name="LuCI.form.SectionValue#uciconfig"><a href="LuCI.form.SectionValue.html#uciconfig">uciconfig</a></li>
  802. <li data-name="LuCI.form.SectionValue#ucioption"><a href="LuCI.form.SectionValue.html#ucioption">ucioption</a></li>
  803. <li data-name="LuCI.form.SectionValue#ucisection"><a href="LuCI.form.SectionValue.html#ucisection">ucisection</a></li>
  804. <li data-name="LuCI.form.SectionValue#validate"><a href="LuCI.form.SectionValue.html#validate">validate</a></li>
  805. <li data-name="LuCI.form.SectionValue#width"><a href="LuCI.form.SectionValue.html#width">width</a></li>
  806. </ul>
  807. <ul class="typedefs itemMembers">
  808. </ul>
  809. <ul class="typedefs itemMembers">
  810. </ul>
  811. <ul class="methods itemMembers">
  812. <span class="subtitle">Methods</span>
  813. <li data-name="LuCI.form.SectionValue#append"><a href="LuCI.form.SectionValue.html#append">append</a></li>
  814. <li data-name="LuCI.form.SectionValue#cbid"><a href="LuCI.form.SectionValue.html#cbid">cbid</a></li>
  815. <li data-name="LuCI.form.SectionValue#cfgvalue"><a href="LuCI.form.SectionValue.html#cfgvalue">cfgvalue</a></li>
  816. <li data-name="LuCI.form.SectionValue#depends"><a href="LuCI.form.SectionValue.html#depends">depends</a></li>
  817. <li data-name="LuCI.form.SectionValue#formvalue"><a href="LuCI.form.SectionValue.html#formvalue">formvalue</a></li>
  818. <li data-name="LuCI.form.SectionValue#getUIElement"><a href="LuCI.form.SectionValue.html#getUIElement">getUIElement</a></li>
  819. <li data-name="LuCI.form.SectionValue#isActive"><a href="LuCI.form.SectionValue.html#isActive">isActive</a></li>
  820. <li data-name="LuCI.form.SectionValue#isValid"><a href="LuCI.form.SectionValue.html#isValid">isValid</a></li>
  821. <li data-name="LuCI.form.SectionValue#load"><a href="LuCI.form.SectionValue.html#load">load</a></li>
  822. <li data-name="LuCI.form.SectionValue#parse"><a href="LuCI.form.SectionValue.html#parse">parse</a></li>
  823. <li data-name="LuCI.form.SectionValue#remove"><a href="LuCI.form.SectionValue.html#remove">remove</a></li>
  824. <li data-name="LuCI.form.SectionValue#stripTags"><a href="LuCI.form.SectionValue.html#stripTags">stripTags</a></li>
  825. <li data-name="LuCI.form.SectionValue#textvalue"><a href="LuCI.form.SectionValue.html#textvalue">textvalue</a></li>
  826. <li data-name="LuCI.form.SectionValue#titleFn"><a href="LuCI.form.SectionValue.html#titleFn">titleFn</a></li>
  827. <li data-name="LuCI.form.SectionValue#value"><a href="LuCI.form.SectionValue.html#value">value</a></li>
  828. <li data-name="LuCI.form.SectionValue#write"><a href="LuCI.form.SectionValue.html#write">write</a></li>
  829. </ul>
  830. <ul class="events itemMembers">
  831. </ul>
  832. </li>
  833. <li class="item" data-name="LuCI.form.TableSection">
  834. <span class="title">
  835. <a href="LuCI.form.TableSection.html">LuCI.form.TableSection</a>
  836. </span>
  837. <ul class="members itemMembers">
  838. <span class="subtitle">Members</span>
  839. <li data-name="LuCI.form.TableSection##addbtntitle"><a href="LuCI.form.TableSection.html#addbtntitle">addbtntitle</a></li>
  840. <li data-name="LuCI.form.TableSection##addremove"><a href="LuCI.form.TableSection.html#addremove">addremove</a></li>
  841. <li data-name="LuCI.form.TableSection##anonymous"><a href="LuCI.form.TableSection.html#anonymous">anonymous</a></li>
  842. <li data-name="LuCI.form.TableSection##extedit"><a href="LuCI.form.TableSection.html#extedit">extedit</a></li>
  843. <li data-name="LuCI.form.TableSection##max_cols"><a href="LuCI.form.TableSection.html#max_cols">max_cols</a></li>
  844. <li data-name="LuCI.form.TableSection##modaltitle"><a href="LuCI.form.TableSection.html#modaltitle">modaltitle</a></li>
  845. <li data-name="LuCI.form.TableSection##nodescriptions"><a href="LuCI.form.TableSection.html#nodescriptions">nodescriptions</a></li>
  846. <li data-name="LuCI.form.TableSection##rowcolors"><a href="LuCI.form.TableSection.html#rowcolors">rowcolors</a></li>
  847. <li data-name="LuCI.form.TableSection##sectiontitle"><a href="LuCI.form.TableSection.html#sectiontitle">sectiontitle</a></li>
  848. <li data-name="LuCI.form.TableSection##sortable"><a href="LuCI.form.TableSection.html#sortable">sortable</a></li>
  849. <li data-name="LuCI.form.TableSection##uciconfig"><a href="LuCI.form.TableSection.html#uciconfig">uciconfig</a></li>
  850. <li data-name="LuCI.form.TableSection#addbtntitle"><a href="LuCI.form.TableSection.html#addbtntitle">addbtntitle</a></li>
  851. <li data-name="LuCI.form.TableSection#addremove"><a href="LuCI.form.TableSection.html#addremove">addremove</a></li>
  852. <li data-name="LuCI.form.TableSection#anonymous"><a href="LuCI.form.TableSection.html#anonymous">anonymous</a></li>
  853. <li data-name="LuCI.form.TableSection#parentoption"><a href="LuCI.form.TableSection.html#parentoption">parentoption</a></li>
  854. <li data-name="LuCI.form.TableSection#tabbed"><a href="LuCI.form.TableSection.html#tabbed">tabbed</a></li>
  855. <li data-name="LuCI.form.TableSection#uciconfig"><a href="LuCI.form.TableSection.html#uciconfig">uciconfig</a></li>
  856. </ul>
  857. <ul class="typedefs itemMembers">
  858. </ul>
  859. <ul class="typedefs itemMembers">
  860. </ul>
  861. <ul class="methods itemMembers">
  862. <span class="subtitle">Methods</span>
  863. <li data-name="LuCI.form.TableSection#addModalOptions"><a href="LuCI.form.TableSection.html#addModalOptions">addModalOptions</a></li>
  864. <li data-name="LuCI.form.TableSection#append"><a href="LuCI.form.TableSection.html#append">append</a></li>
  865. <li data-name="LuCI.form.TableSection#cfgvalue"><a href="LuCI.form.TableSection.html#cfgvalue">cfgvalue</a></li>
  866. <li data-name="LuCI.form.TableSection#filter"><a href="LuCI.form.TableSection.html#filter">filter</a></li>
  867. <li data-name="LuCI.form.TableSection#formvalue"><a href="LuCI.form.TableSection.html#formvalue">formvalue</a></li>
  868. <li data-name="LuCI.form.TableSection#getOption"><a href="LuCI.form.TableSection.html#getOption">getOption</a></li>
  869. <li data-name="LuCI.form.TableSection#getUIElement"><a href="LuCI.form.TableSection.html#getUIElement">getUIElement</a></li>
  870. <li data-name="LuCI.form.TableSection#load"><a href="LuCI.form.TableSection.html#load">load</a></li>
  871. <li data-name="LuCI.form.TableSection#option"><a href="LuCI.form.TableSection.html#option">option</a></li>
  872. <li data-name="LuCI.form.TableSection#parse"><a href="LuCI.form.TableSection.html#parse">parse</a></li>
  873. <li data-name="LuCI.form.TableSection#stripTags"><a href="LuCI.form.TableSection.html#stripTags">stripTags</a></li>
  874. <li data-name="LuCI.form.TableSection#tab"><a href="LuCI.form.TableSection.html#tab">tab</a></li>
  875. <li data-name="LuCI.form.TableSection#taboption"><a href="LuCI.form.TableSection.html#taboption">taboption</a></li>
  876. <li data-name="LuCI.form.TableSection#titleFn"><a href="LuCI.form.TableSection.html#titleFn">titleFn</a></li>
  877. </ul>
  878. <ul class="events itemMembers">
  879. </ul>
  880. </li>
  881. <li class="item" data-name="LuCI.form.TextValue">
  882. <span class="title">
  883. <a href="LuCI.form.TextValue.html">LuCI.form.TextValue</a>
  884. </span>
  885. <ul class="members itemMembers">
  886. <span class="subtitle">Members</span>
  887. <li data-name="LuCI.form.TextValue##cols"><a href="LuCI.form.TextValue.html#cols">cols</a></li>
  888. <li data-name="LuCI.form.TextValue##monospace"><a href="LuCI.form.TextValue.html#monospace">monospace</a></li>
  889. <li data-name="LuCI.form.TextValue##rows"><a href="LuCI.form.TextValue.html#rows">rows</a></li>
  890. <li data-name="LuCI.form.TextValue##wrap"><a href="LuCI.form.TextValue.html#wrap">wrap</a></li>
  891. <li data-name="LuCI.form.TextValue#datatype"><a href="LuCI.form.TextValue.html#datatype">datatype</a></li>
  892. <li data-name="LuCI.form.TextValue#default"><a href="LuCI.form.TextValue.html#default">default</a></li>
  893. <li data-name="LuCI.form.TextValue#editable"><a href="LuCI.form.TextValue.html#editable">editable</a></li>
  894. <li data-name="LuCI.form.TextValue#modalonly"><a href="LuCI.form.TextValue.html#modalonly">modalonly</a></li>
  895. <li data-name="LuCI.form.TextValue#onchange"><a href="LuCI.form.TextValue.html#onchange">onchange</a></li>
  896. <li data-name="LuCI.form.TextValue#optional"><a href="LuCI.form.TextValue.html#optional">optional</a></li>
  897. <li data-name="LuCI.form.TextValue#password"><a href="LuCI.form.TextValue.html#password">password</a></li>
  898. <li data-name="LuCI.form.TextValue#placeholder"><a href="LuCI.form.TextValue.html#placeholder">placeholder</a></li>
  899. <li data-name="LuCI.form.TextValue#readonly"><a href="LuCI.form.TextValue.html#readonly">readonly</a></li>
  900. <li data-name="LuCI.form.TextValue#rmempty"><a href="LuCI.form.TextValue.html#rmempty">rmempty</a></li>
  901. <li data-name="LuCI.form.TextValue#uciconfig"><a href="LuCI.form.TextValue.html#uciconfig">uciconfig</a></li>
  902. <li data-name="LuCI.form.TextValue#ucioption"><a href="LuCI.form.TextValue.html#ucioption">ucioption</a></li>
  903. <li data-name="LuCI.form.TextValue#ucisection"><a href="LuCI.form.TextValue.html#ucisection">ucisection</a></li>
  904. <li data-name="LuCI.form.TextValue#validate"><a href="LuCI.form.TextValue.html#validate">validate</a></li>
  905. <li data-name="LuCI.form.TextValue#width"><a href="LuCI.form.TextValue.html#width">width</a></li>
  906. </ul>
  907. <ul class="typedefs itemMembers">
  908. </ul>
  909. <ul class="typedefs itemMembers">
  910. </ul>
  911. <ul class="methods itemMembers">
  912. <span class="subtitle">Methods</span>
  913. <li data-name="LuCI.form.TextValue#append"><a href="LuCI.form.TextValue.html#append">append</a></li>
  914. <li data-name="LuCI.form.TextValue#cbid"><a href="LuCI.form.TextValue.html#cbid">cbid</a></li>
  915. <li data-name="LuCI.form.TextValue#cfgvalue"><a href="LuCI.form.TextValue.html#cfgvalue">cfgvalue</a></li>
  916. <li data-name="LuCI.form.TextValue#depends"><a href="LuCI.form.TextValue.html#depends">depends</a></li>
  917. <li data-name="LuCI.form.TextValue#formvalue"><a href="LuCI.form.TextValue.html#formvalue">formvalue</a></li>
  918. <li data-name="LuCI.form.TextValue#getUIElement"><a href="LuCI.form.TextValue.html#getUIElement">getUIElement</a></li>
  919. <li data-name="LuCI.form.TextValue#isActive"><a href="LuCI.form.TextValue.html#isActive">isActive</a></li>
  920. <li data-name="LuCI.form.TextValue#isValid"><a href="LuCI.form.TextValue.html#isValid">isValid</a></li>
  921. <li data-name="LuCI.form.TextValue#load"><a href="LuCI.form.TextValue.html#load">load</a></li>
  922. <li data-name="LuCI.form.TextValue#parse"><a href="LuCI.form.TextValue.html#parse">parse</a></li>
  923. <li data-name="LuCI.form.TextValue#remove"><a href="LuCI.form.TextValue.html#remove">remove</a></li>
  924. <li data-name="LuCI.form.TextValue#stripTags"><a href="LuCI.form.TextValue.html#stripTags">stripTags</a></li>
  925. <li data-name="LuCI.form.TextValue#textvalue"><a href="LuCI.form.TextValue.html#textvalue">textvalue</a></li>
  926. <li data-name="LuCI.form.TextValue#titleFn"><a href="LuCI.form.TextValue.html#titleFn">titleFn</a></li>
  927. <li data-name="LuCI.form.TextValue#write"><a href="LuCI.form.TextValue.html#write">write</a></li>
  928. </ul>
  929. <ul class="events itemMembers">
  930. </ul>
  931. </li>
  932. <li class="item" data-name="LuCI.form.TypedSection">
  933. <span class="title">
  934. <a href="LuCI.form.TypedSection.html">LuCI.form.TypedSection</a>
  935. </span>
  936. <ul class="members itemMembers">
  937. <span class="subtitle">Members</span>
  938. <li data-name="LuCI.form.TypedSection##addbtntitle"><a href="LuCI.form.TypedSection.html#addbtntitle">addbtntitle</a></li>
  939. <li data-name="LuCI.form.TypedSection##addremove"><a href="LuCI.form.TypedSection.html#addremove">addremove</a></li>
  940. <li data-name="LuCI.form.TypedSection##anonymous"><a href="LuCI.form.TypedSection.html#anonymous">anonymous</a></li>
  941. <li data-name="LuCI.form.TypedSection##tabbed"><a href="LuCI.form.TypedSection.html#tabbed">tabbed</a></li>
  942. <li data-name="LuCI.form.TypedSection##uciconfig"><a href="LuCI.form.TypedSection.html#uciconfig">uciconfig</a></li>
  943. <li data-name="LuCI.form.TypedSection#parentoption"><a href="LuCI.form.TypedSection.html#parentoption">parentoption</a></li>
  944. </ul>
  945. <ul class="typedefs itemMembers">
  946. </ul>
  947. <ul class="typedefs itemMembers">
  948. </ul>
  949. <ul class="methods itemMembers">
  950. <span class="subtitle">Methods</span>
  951. <li data-name="LuCI.form.TypedSection#append"><a href="LuCI.form.TypedSection.html#append">append</a></li>
  952. <li data-name="LuCI.form.TypedSection#cfgsections"><a href="LuCI.form.TypedSection.html#cfgsections">cfgsections</a></li>
  953. <li data-name="LuCI.form.TypedSection#cfgvalue"><a href="LuCI.form.TypedSection.html#cfgvalue">cfgvalue</a></li>
  954. <li data-name="LuCI.form.TypedSection#filter"><a href="LuCI.form.TypedSection.html#filter">filter</a></li>
  955. <li data-name="LuCI.form.TypedSection#formvalue"><a href="LuCI.form.TypedSection.html#formvalue">formvalue</a></li>
  956. <li data-name="LuCI.form.TypedSection#getOption"><a href="LuCI.form.TypedSection.html#getOption">getOption</a></li>
  957. <li data-name="LuCI.form.TypedSection#getUIElement"><a href="LuCI.form.TypedSection.html#getUIElement">getUIElement</a></li>
  958. <li data-name="LuCI.form.TypedSection#load"><a href="LuCI.form.TypedSection.html#load">load</a></li>
  959. <li data-name="LuCI.form.TypedSection#option"><a href="LuCI.form.TypedSection.html#option">option</a></li>
  960. <li data-name="LuCI.form.TypedSection#parse"><a href="LuCI.form.TypedSection.html#parse">parse</a></li>
  961. <li data-name="LuCI.form.TypedSection#render"><a href="LuCI.form.TypedSection.html#render">render</a></li>
  962. <li data-name="LuCI.form.TypedSection#stripTags"><a href="LuCI.form.TypedSection.html#stripTags">stripTags</a></li>
  963. <li data-name="LuCI.form.TypedSection#tab"><a href="LuCI.form.TypedSection.html#tab">tab</a></li>
  964. <li data-name="LuCI.form.TypedSection#taboption"><a href="LuCI.form.TypedSection.html#taboption">taboption</a></li>
  965. <li data-name="LuCI.form.TypedSection#titleFn"><a href="LuCI.form.TypedSection.html#titleFn">titleFn</a></li>
  966. </ul>
  967. <ul class="events itemMembers">
  968. </ul>
  969. </li>
  970. <li class="item" data-name="LuCI.form.Value">
  971. <span class="title">
  972. <a href="LuCI.form.Value.html">LuCI.form.Value</a>
  973. </span>
  974. <ul class="members itemMembers">
  975. <span class="subtitle">Members</span>
  976. <li data-name="LuCI.form.Value##password"><a href="LuCI.form.Value.html#password">password</a></li>
  977. <li data-name="LuCI.form.Value##placeholder"><a href="LuCI.form.Value.html#placeholder">placeholder</a></li>
  978. <li data-name="LuCI.form.Value#datatype"><a href="LuCI.form.Value.html#datatype">datatype</a></li>
  979. <li data-name="LuCI.form.Value#default"><a href="LuCI.form.Value.html#default">default</a></li>
  980. <li data-name="LuCI.form.Value#editable"><a href="LuCI.form.Value.html#editable">editable</a></li>
  981. <li data-name="LuCI.form.Value#modalonly"><a href="LuCI.form.Value.html#modalonly">modalonly</a></li>
  982. <li data-name="LuCI.form.Value#onchange"><a href="LuCI.form.Value.html#onchange">onchange</a></li>
  983. <li data-name="LuCI.form.Value#optional"><a href="LuCI.form.Value.html#optional">optional</a></li>
  984. <li data-name="LuCI.form.Value#readonly"><a href="LuCI.form.Value.html#readonly">readonly</a></li>
  985. <li data-name="LuCI.form.Value#rmempty"><a href="LuCI.form.Value.html#rmempty">rmempty</a></li>
  986. <li data-name="LuCI.form.Value#uciconfig"><a href="LuCI.form.Value.html#uciconfig">uciconfig</a></li>
  987. <li data-name="LuCI.form.Value#ucioption"><a href="LuCI.form.Value.html#ucioption">ucioption</a></li>
  988. <li data-name="LuCI.form.Value#ucisection"><a href="LuCI.form.Value.html#ucisection">ucisection</a></li>
  989. <li data-name="LuCI.form.Value#validate"><a href="LuCI.form.Value.html#validate">validate</a></li>
  990. <li data-name="LuCI.form.Value#width"><a href="LuCI.form.Value.html#width">width</a></li>
  991. </ul>
  992. <ul class="typedefs itemMembers">
  993. </ul>
  994. <ul class="typedefs itemMembers">
  995. </ul>
  996. <ul class="methods itemMembers">
  997. <span class="subtitle">Methods</span>
  998. <li data-name="LuCI.form.Value#append"><a href="LuCI.form.Value.html#append">append</a></li>
  999. <li data-name="LuCI.form.Value#cbid"><a href="LuCI.form.Value.html#cbid">cbid</a></li>
  1000. <li data-name="LuCI.form.Value#cfgvalue"><a href="LuCI.form.Value.html#cfgvalue">cfgvalue</a></li>
  1001. <li data-name="LuCI.form.Value#depends"><a href="LuCI.form.Value.html#depends">depends</a></li>
  1002. <li data-name="LuCI.form.Value#formvalue"><a href="LuCI.form.Value.html#formvalue">formvalue</a></li>
  1003. <li data-name="LuCI.form.Value#getUIElement"><a href="LuCI.form.Value.html#getUIElement">getUIElement</a></li>
  1004. <li data-name="LuCI.form.Value#isActive"><a href="LuCI.form.Value.html#isActive">isActive</a></li>
  1005. <li data-name="LuCI.form.Value#isValid"><a href="LuCI.form.Value.html#isValid">isValid</a></li>
  1006. <li data-name="LuCI.form.Value#load"><a href="LuCI.form.Value.html#load">load</a></li>
  1007. <li data-name="LuCI.form.Value#parse"><a href="LuCI.form.Value.html#parse">parse</a></li>
  1008. <li data-name="LuCI.form.Value#remove"><a href="LuCI.form.Value.html#remove">remove</a></li>
  1009. <li data-name="LuCI.form.Value#render"><a href="LuCI.form.Value.html#render">render</a></li>
  1010. <li data-name="LuCI.form.Value#stripTags"><a href="LuCI.form.Value.html#stripTags">stripTags</a></li>
  1011. <li data-name="LuCI.form.Value#textvalue"><a href="LuCI.form.Value.html#textvalue">textvalue</a></li>
  1012. <li data-name="LuCI.form.Value#titleFn"><a href="LuCI.form.Value.html#titleFn">titleFn</a></li>
  1013. <li data-name="LuCI.form.Value#value"><a href="LuCI.form.Value.html#value">value</a></li>
  1014. <li data-name="LuCI.form.Value#write"><a href="LuCI.form.Value.html#write">write</a></li>
  1015. </ul>
  1016. <ul class="events itemMembers">
  1017. </ul>
  1018. </li>
  1019. <li class="item" data-name="LuCI.fs">
  1020. <span class="title">
  1021. <a href="LuCI.fs.html">LuCI.fs</a>
  1022. </span>
  1023. <ul class="members itemMembers">
  1024. </ul>
  1025. <ul class="typedefs itemMembers">
  1026. <span class="subtitle">Typedefs</span>
  1027. <li data-name="LuCI.fs.FileExecResult"><a href="LuCI.fs.html#.FileExecResult">FileExecResult</a></li>
  1028. <li data-name="LuCI.fs.FileStatEntry"><a href="LuCI.fs.html#.FileStatEntry">FileStatEntry</a></li>
  1029. </ul>
  1030. <ul class="typedefs itemMembers">
  1031. </ul>
  1032. <ul class="methods itemMembers">
  1033. <span class="subtitle">Methods</span>
  1034. <li data-name="LuCI.fs#exec"><a href="LuCI.fs.html#exec">exec</a></li>
  1035. <li data-name="LuCI.fs#exec_direct"><a href="LuCI.fs.html#exec_direct">exec_direct</a></li>
  1036. <li data-name="LuCI.fs#lines"><a href="LuCI.fs.html#lines">lines</a></li>
  1037. <li data-name="LuCI.fs#list"><a href="LuCI.fs.html#list">list</a></li>
  1038. <li data-name="LuCI.fs#read"><a href="LuCI.fs.html#read">read</a></li>
  1039. <li data-name="LuCI.fs#read_direct"><a href="LuCI.fs.html#read_direct">read_direct</a></li>
  1040. <li data-name="LuCI.fs#remove"><a href="LuCI.fs.html#remove">remove</a></li>
  1041. <li data-name="LuCI.fs#stat"><a href="LuCI.fs.html#stat">stat</a></li>
  1042. <li data-name="LuCI.fs#trimmed"><a href="LuCI.fs.html#trimmed">trimmed</a></li>
  1043. <li data-name="LuCI.fs#write"><a href="LuCI.fs.html#write">write</a></li>
  1044. </ul>
  1045. <ul class="events itemMembers">
  1046. </ul>
  1047. </li>
  1048. <li class="item" data-name="LuCI.headers">
  1049. <span class="title">
  1050. <a href="LuCI.headers.html">LuCI.headers</a>
  1051. </span>
  1052. <ul class="members itemMembers">
  1053. </ul>
  1054. <ul class="typedefs itemMembers">
  1055. </ul>
  1056. <ul class="typedefs itemMembers">
  1057. </ul>
  1058. <ul class="methods itemMembers">
  1059. <span class="subtitle">Methods</span>
  1060. <li data-name="LuCI.headers#get"><a href="LuCI.headers.html#get">get</a></li>
  1061. <li data-name="LuCI.headers#has"><a href="LuCI.headers.html#has">has</a></li>
  1062. </ul>
  1063. <ul class="events itemMembers">
  1064. </ul>
  1065. </li>
  1066. <li class="item" data-name="LuCI.network">
  1067. <span class="title">
  1068. <a href="LuCI.network.html">LuCI.network</a>
  1069. </span>
  1070. <ul class="members itemMembers">
  1071. </ul>
  1072. <ul class="typedefs itemMembers">
  1073. <span class="subtitle">Typedefs</span>
  1074. <li data-name="LuCI.network.SwitchTopology"><a href="LuCI.network.html#.SwitchTopology">SwitchTopology</a></li>
  1075. <li data-name="LuCI.network.WifiEncryption"><a href="LuCI.network.html#.WifiEncryption">WifiEncryption</a></li>
  1076. <li data-name="LuCI.network.WifiPeerEntry"><a href="LuCI.network.html#.WifiPeerEntry">WifiPeerEntry</a></li>
  1077. <li data-name="LuCI.network.WifiRateEntry"><a href="LuCI.network.html#.WifiRateEntry">WifiRateEntry</a></li>
  1078. <li data-name="LuCI.network.WifiScanResult"><a href="LuCI.network.html#.WifiScanResult">WifiScanResult</a></li>
  1079. </ul>
  1080. <ul class="typedefs itemMembers">
  1081. </ul>
  1082. <ul class="methods itemMembers">
  1083. <span class="subtitle">Methods</span>
  1084. <li data-name="LuCI.network#addNetwork"><a href="LuCI.network.html#addNetwork">addNetwork</a></li>
  1085. <li data-name="LuCI.network#addWifiNetwork"><a href="LuCI.network.html#addWifiNetwork">addWifiNetwork</a></li>
  1086. <li data-name="LuCI.network#deleteNetwork"><a href="LuCI.network.html#deleteNetwork">deleteNetwork</a></li>
  1087. <li data-name="LuCI.network#deleteWifiNetwork"><a href="LuCI.network.html#deleteWifiNetwork">deleteWifiNetwork</a></li>
  1088. <li data-name="LuCI.network#flushCache"><a href="LuCI.network.html#flushCache">flushCache</a></li>
  1089. <li data-name="LuCI.network#formatWifiEncryption"><a href="LuCI.network.html#formatWifiEncryption">formatWifiEncryption</a></li>
  1090. <li data-name="LuCI.network#getDevice"><a href="LuCI.network.html#getDevice">getDevice</a></li>
  1091. <li data-name="LuCI.network#getDevices"><a href="LuCI.network.html#getDevices">getDevices</a></li>
  1092. <li data-name="LuCI.network#getDSLModemType"><a href="LuCI.network.html#getDSLModemType">getDSLModemType</a></li>
  1093. <li data-name="LuCI.network#getHostHints"><a href="LuCI.network.html#getHostHints">getHostHints</a></li>
  1094. <li data-name="LuCI.network#getIfnameOf"><a href="LuCI.network.html#getIfnameOf">getIfnameOf</a></li>
  1095. <li data-name="LuCI.network#getNetwork"><a href="LuCI.network.html#getNetwork">getNetwork</a></li>
  1096. <li data-name="LuCI.network#getNetworks"><a href="LuCI.network.html#getNetworks">getNetworks</a></li>
  1097. <li data-name="LuCI.network#getProtocol"><a href="LuCI.network.html#getProtocol">getProtocol</a></li>
  1098. <li data-name="LuCI.network#getProtocols"><a href="LuCI.network.html#getProtocols">getProtocols</a></li>
  1099. <li data-name="LuCI.network#getSwitchTopologies"><a href="LuCI.network.html#getSwitchTopologies">getSwitchTopologies</a></li>
  1100. <li data-name="LuCI.network#getWAN6Networks"><a href="LuCI.network.html#getWAN6Networks">getWAN6Networks</a></li>
  1101. <li data-name="LuCI.network#getWANNetworks"><a href="LuCI.network.html#getWANNetworks">getWANNetworks</a></li>
  1102. <li data-name="LuCI.network#getWifiDevice"><a href="LuCI.network.html#getWifiDevice">getWifiDevice</a></li>
  1103. <li data-name="LuCI.network#getWifiDevices"><a href="LuCI.network.html#getWifiDevices">getWifiDevices</a></li>
  1104. <li data-name="LuCI.network#getWifiNetwork"><a href="LuCI.network.html#getWifiNetwork">getWifiNetwork</a></li>
  1105. <li data-name="LuCI.network#getWifiNetworks"><a href="LuCI.network.html#getWifiNetworks">getWifiNetworks</a></li>
  1106. <li data-name="LuCI.network#isIgnoredDevice"><a href="LuCI.network.html#isIgnoredDevice">isIgnoredDevice</a></li>
  1107. <li data-name="LuCI.network#maskToPrefix"><a href="LuCI.network.html#maskToPrefix">maskToPrefix</a></li>
  1108. <li data-name="LuCI.network#prefixToMask"><a href="LuCI.network.html#prefixToMask">prefixToMask</a></li>
  1109. <li data-name="LuCI.network#registerErrorCode"><a href="LuCI.network.html#registerErrorCode">registerErrorCode</a></li>
  1110. <li data-name="LuCI.network#registerPatternVirtual"><a href="LuCI.network.html#registerPatternVirtual">registerPatternVirtual</a></li>
  1111. <li data-name="LuCI.network#registerProtocol"><a href="LuCI.network.html#registerProtocol">registerProtocol</a></li>
  1112. <li data-name="LuCI.network#renameNetwork"><a href="LuCI.network.html#renameNetwork">renameNetwork</a></li>
  1113. </ul>
  1114. <ul class="events itemMembers">
  1115. </ul>
  1116. </li>
  1117. <li class="item" data-name="LuCI.network.Device">
  1118. <span class="title">
  1119. <a href="LuCI.network.Device.html">LuCI.network.Device</a>
  1120. </span>
  1121. <ul class="members itemMembers">
  1122. </ul>
  1123. <ul class="typedefs itemMembers">
  1124. </ul>
  1125. <ul class="typedefs itemMembers">
  1126. </ul>
  1127. <ul class="methods itemMembers">
  1128. <span class="subtitle">Methods</span>
  1129. <li data-name="LuCI.network.Device#getBridgeID"><a href="LuCI.network.Device.html#getBridgeID">getBridgeID</a></li>
  1130. <li data-name="LuCI.network.Device#getBridgeSTP"><a href="LuCI.network.Device.html#getBridgeSTP">getBridgeSTP</a></li>
  1131. <li data-name="LuCI.network.Device#getI18n"><a href="LuCI.network.Device.html#getI18n">getI18n</a></li>
  1132. <li data-name="LuCI.network.Device#getIP6Addrs"><a href="LuCI.network.Device.html#getIP6Addrs">getIP6Addrs</a></li>
  1133. <li data-name="LuCI.network.Device#getIPAddrs"><a href="LuCI.network.Device.html#getIPAddrs">getIPAddrs</a></li>
  1134. <li data-name="LuCI.network.Device#getMAC"><a href="LuCI.network.Device.html#getMAC">getMAC</a></li>
  1135. <li data-name="LuCI.network.Device#getMTU"><a href="LuCI.network.Device.html#getMTU">getMTU</a></li>
  1136. <li data-name="LuCI.network.Device#getName"><a href="LuCI.network.Device.html#getName">getName</a></li>
  1137. <li data-name="LuCI.network.Device#getNetwork"><a href="LuCI.network.Device.html#getNetwork">getNetwork</a></li>
  1138. <li data-name="LuCI.network.Device#getNetworks"><a href="LuCI.network.Device.html#getNetworks">getNetworks</a></li>
  1139. <li data-name="LuCI.network.Device#getPorts"><a href="LuCI.network.Device.html#getPorts">getPorts</a></li>
  1140. <li data-name="LuCI.network.Device#getRXBytes"><a href="LuCI.network.Device.html#getRXBytes">getRXBytes</a></li>
  1141. <li data-name="LuCI.network.Device#getRXPackets"><a href="LuCI.network.Device.html#getRXPackets">getRXPackets</a></li>
  1142. <li data-name="LuCI.network.Device#getShortName"><a href="LuCI.network.Device.html#getShortName">getShortName</a></li>
  1143. <li data-name="LuCI.network.Device#getTXBytes"><a href="LuCI.network.Device.html#getTXBytes">getTXBytes</a></li>
  1144. <li data-name="LuCI.network.Device#getTXPackets"><a href="LuCI.network.Device.html#getTXPackets">getTXPackets</a></li>
  1145. <li data-name="LuCI.network.Device#getType"><a href="LuCI.network.Device.html#getType">getType</a></li>
  1146. <li data-name="LuCI.network.Device#getTypeI18n"><a href="LuCI.network.Device.html#getTypeI18n">getTypeI18n</a></li>
  1147. <li data-name="LuCI.network.Device#getWifiNetwork"><a href="LuCI.network.Device.html#getWifiNetwork">getWifiNetwork</a></li>
  1148. <li data-name="LuCI.network.Device#isBridge"><a href="LuCI.network.Device.html#isBridge">isBridge</a></li>
  1149. <li data-name="LuCI.network.Device#isBridgePort"><a href="LuCI.network.Device.html#isBridgePort">isBridgePort</a></li>
  1150. <li data-name="LuCI.network.Device#isUp"><a href="LuCI.network.Device.html#isUp">isUp</a></li>
  1151. </ul>
  1152. <ul class="events itemMembers">
  1153. </ul>
  1154. </li>
  1155. <li class="item" data-name="LuCI.network.Hosts">
  1156. <span class="title">
  1157. <a href="LuCI.network.Hosts.html">LuCI.network.Hosts</a>
  1158. </span>
  1159. <ul class="members itemMembers">
  1160. </ul>
  1161. <ul class="typedefs itemMembers">
  1162. </ul>
  1163. <ul class="typedefs itemMembers">
  1164. </ul>
  1165. <ul class="methods itemMembers">
  1166. <span class="subtitle">Methods</span>
  1167. <li data-name="LuCI.network.Hosts#getHostnameByIP6Addr"><a href="LuCI.network.Hosts.html#getHostnameByIP6Addr">getHostnameByIP6Addr</a></li>
  1168. <li data-name="LuCI.network.Hosts#getHostnameByIPAddr"><a href="LuCI.network.Hosts.html#getHostnameByIPAddr">getHostnameByIPAddr</a></li>
  1169. <li data-name="LuCI.network.Hosts#getHostnameByMACAddr"><a href="LuCI.network.Hosts.html#getHostnameByMACAddr">getHostnameByMACAddr</a></li>
  1170. <li data-name="LuCI.network.Hosts#getIP6AddrByMACAddr"><a href="LuCI.network.Hosts.html#getIP6AddrByMACAddr">getIP6AddrByMACAddr</a></li>
  1171. <li data-name="LuCI.network.Hosts#getIPAddrByMACAddr"><a href="LuCI.network.Hosts.html#getIPAddrByMACAddr">getIPAddrByMACAddr</a></li>
  1172. <li data-name="LuCI.network.Hosts#getMACAddrByIP6Addr"><a href="LuCI.network.Hosts.html#getMACAddrByIP6Addr">getMACAddrByIP6Addr</a></li>
  1173. <li data-name="LuCI.network.Hosts#getMACAddrByIPAddr"><a href="LuCI.network.Hosts.html#getMACAddrByIPAddr">getMACAddrByIPAddr</a></li>
  1174. <li data-name="LuCI.network.Hosts#getMACHints"><a href="LuCI.network.Hosts.html#getMACHints">getMACHints</a></li>
  1175. </ul>
  1176. <ul class="events itemMembers">
  1177. </ul>
  1178. </li>
  1179. <li class="item" data-name="LuCI.network.Protocol">
  1180. <span class="title">
  1181. <a href="LuCI.network.Protocol.html">LuCI.network.Protocol</a>
  1182. </span>
  1183. <ul class="members itemMembers">
  1184. </ul>
  1185. <ul class="typedefs itemMembers">
  1186. </ul>
  1187. <ul class="typedefs itemMembers">
  1188. </ul>
  1189. <ul class="methods itemMembers">
  1190. <span class="subtitle">Methods</span>
  1191. <li data-name="LuCI.network.Protocol#addDevice"><a href="LuCI.network.Protocol.html#addDevice">addDevice</a></li>
  1192. <li data-name="LuCI.network.Protocol#containsDevice"><a href="LuCI.network.Protocol.html#containsDevice">containsDevice</a></li>
  1193. <li data-name="LuCI.network.Protocol#deleteConfiguration"><a href="LuCI.network.Protocol.html#deleteConfiguration">deleteConfiguration</a></li>
  1194. <li data-name="LuCI.network.Protocol#deleteDevice"><a href="LuCI.network.Protocol.html#deleteDevice">deleteDevice</a></li>
  1195. <li data-name="LuCI.network.Protocol#get"><a href="LuCI.network.Protocol.html#get">get</a></li>
  1196. <li data-name="LuCI.network.Protocol#getDevice"><a href="LuCI.network.Protocol.html#getDevice">getDevice</a></li>
  1197. <li data-name="LuCI.network.Protocol#getDevices"><a href="LuCI.network.Protocol.html#getDevices">getDevices</a></li>
  1198. <li data-name="LuCI.network.Protocol#getDNS6Addrs"><a href="LuCI.network.Protocol.html#getDNS6Addrs">getDNS6Addrs</a></li>
  1199. <li data-name="LuCI.network.Protocol#getDNSAddrs"><a href="LuCI.network.Protocol.html#getDNSAddrs">getDNSAddrs</a></li>
  1200. <li data-name="LuCI.network.Protocol#getErrors"><a href="LuCI.network.Protocol.html#getErrors">getErrors</a></li>
  1201. <li data-name="LuCI.network.Protocol#getExpiry"><a href="LuCI.network.Protocol.html#getExpiry">getExpiry</a></li>
  1202. <li data-name="LuCI.network.Protocol#getGateway6Addr"><a href="LuCI.network.Protocol.html#getGateway6Addr">getGateway6Addr</a></li>
  1203. <li data-name="LuCI.network.Protocol#getGatewayAddr"><a href="LuCI.network.Protocol.html#getGatewayAddr">getGatewayAddr</a></li>
  1204. <li data-name="LuCI.network.Protocol#getI18n"><a href="LuCI.network.Protocol.html#getI18n">getI18n</a></li>
  1205. <li data-name="LuCI.network.Protocol#getIfname"><a href="LuCI.network.Protocol.html#getIfname">getIfname</a></li>
  1206. <li data-name="LuCI.network.Protocol#getIP6Addr"><a href="LuCI.network.Protocol.html#getIP6Addr">getIP6Addr</a></li>
  1207. <li data-name="LuCI.network.Protocol#getIP6Addrs"><a href="LuCI.network.Protocol.html#getIP6Addrs">getIP6Addrs</a></li>
  1208. <li data-name="LuCI.network.Protocol#getIP6Prefix"><a href="LuCI.network.Protocol.html#getIP6Prefix">getIP6Prefix</a></li>
  1209. <li data-name="LuCI.network.Protocol#getIPAddr"><a href="LuCI.network.Protocol.html#getIPAddr">getIPAddr</a></li>
  1210. <li data-name="LuCI.network.Protocol#getIPAddrs"><a href="LuCI.network.Protocol.html#getIPAddrs">getIPAddrs</a></li>
  1211. <li data-name="LuCI.network.Protocol#getL2Device"><a href="LuCI.network.Protocol.html#getL2Device">getL2Device</a></li>
  1212. <li data-name="LuCI.network.Protocol#getL3Device"><a href="LuCI.network.Protocol.html#getL3Device">getL3Device</a></li>
  1213. <li data-name="LuCI.network.Protocol#getMetric"><a href="LuCI.network.Protocol.html#getMetric">getMetric</a></li>
  1214. <li data-name="LuCI.network.Protocol#getName"><a href="LuCI.network.Protocol.html#getName">getName</a></li>
  1215. <li data-name="LuCI.network.Protocol#getNetmask"><a href="LuCI.network.Protocol.html#getNetmask">getNetmask</a></li>
  1216. <li data-name="LuCI.network.Protocol#getOpkgPackage"><a href="LuCI.network.Protocol.html#getOpkgPackage">getOpkgPackage</a></li>
  1217. <li data-name="LuCI.network.Protocol#getProtocol"><a href="LuCI.network.Protocol.html#getProtocol">getProtocol</a></li>
  1218. <li data-name="LuCI.network.Protocol#getType"><a href="LuCI.network.Protocol.html#getType">getType</a></li>
  1219. <li data-name="LuCI.network.Protocol#getUptime"><a href="LuCI.network.Protocol.html#getUptime">getUptime</a></li>
  1220. <li data-name="LuCI.network.Protocol#getZoneName"><a href="LuCI.network.Protocol.html#getZoneName">getZoneName</a></li>
  1221. <li data-name="LuCI.network.Protocol#isAlias"><a href="LuCI.network.Protocol.html#isAlias">isAlias</a></li>
  1222. <li data-name="LuCI.network.Protocol#isBridge"><a href="LuCI.network.Protocol.html#isBridge">isBridge</a></li>
  1223. <li data-name="LuCI.network.Protocol#isCreateable"><a href="LuCI.network.Protocol.html#isCreateable">isCreateable</a></li>
  1224. <li data-name="LuCI.network.Protocol#isDynamic"><a href="LuCI.network.Protocol.html#isDynamic">isDynamic</a></li>
  1225. <li data-name="LuCI.network.Protocol#isEmpty"><a href="LuCI.network.Protocol.html#isEmpty">isEmpty</a></li>
  1226. <li data-name="LuCI.network.Protocol#isFloating"><a href="LuCI.network.Protocol.html#isFloating">isFloating</a></li>
  1227. <li data-name="LuCI.network.Protocol#isInstalled"><a href="LuCI.network.Protocol.html#isInstalled">isInstalled</a></li>
  1228. <li data-name="LuCI.network.Protocol#isUp"><a href="LuCI.network.Protocol.html#isUp">isUp</a></li>
  1229. <li data-name="LuCI.network.Protocol#isVirtual"><a href="LuCI.network.Protocol.html#isVirtual">isVirtual</a></li>
  1230. <li data-name="LuCI.network.Protocol#set"><a href="LuCI.network.Protocol.html#set">set</a></li>
  1231. </ul>
  1232. <ul class="events itemMembers">
  1233. </ul>
  1234. </li>
  1235. <li class="item" data-name="LuCI.network.WifiDevice">
  1236. <span class="title">
  1237. <a href="LuCI.network.WifiDevice.html">LuCI.network.WifiDevice</a>
  1238. </span>
  1239. <ul class="members itemMembers">
  1240. </ul>
  1241. <ul class="typedefs itemMembers">
  1242. </ul>
  1243. <ul class="typedefs itemMembers">
  1244. </ul>
  1245. <ul class="methods itemMembers">
  1246. <span class="subtitle">Methods</span>
  1247. <li data-name="LuCI.network.WifiDevice#addWifiNetwork"><a href="LuCI.network.WifiDevice.html#addWifiNetwork">addWifiNetwork</a></li>
  1248. <li data-name="LuCI.network.WifiDevice#deleteWifiNetwork"><a href="LuCI.network.WifiDevice.html#deleteWifiNetwork">deleteWifiNetwork</a></li>
  1249. <li data-name="LuCI.network.WifiDevice#get"><a href="LuCI.network.WifiDevice.html#get">get</a></li>
  1250. <li data-name="LuCI.network.WifiDevice#getHTModes"><a href="LuCI.network.WifiDevice.html#getHTModes">getHTModes</a></li>
  1251. <li data-name="LuCI.network.WifiDevice#getHWModes"><a href="LuCI.network.WifiDevice.html#getHWModes">getHWModes</a></li>
  1252. <li data-name="LuCI.network.WifiDevice#getI18n"><a href="LuCI.network.WifiDevice.html#getI18n">getI18n</a></li>
  1253. <li data-name="LuCI.network.WifiDevice#getName"><a href="LuCI.network.WifiDevice.html#getName">getName</a></li>
  1254. <li data-name="LuCI.network.WifiDevice#getScanList"><a href="LuCI.network.WifiDevice.html#getScanList">getScanList</a></li>
  1255. <li data-name="LuCI.network.WifiDevice#getWifiNetwork"><a href="LuCI.network.WifiDevice.html#getWifiNetwork">getWifiNetwork</a></li>
  1256. <li data-name="LuCI.network.WifiDevice#getWifiNetworks"><a href="LuCI.network.WifiDevice.html#getWifiNetworks">getWifiNetworks</a></li>
  1257. <li data-name="LuCI.network.WifiDevice#isDisabled"><a href="LuCI.network.WifiDevice.html#isDisabled">isDisabled</a></li>
  1258. <li data-name="LuCI.network.WifiDevice#isUp"><a href="LuCI.network.WifiDevice.html#isUp">isUp</a></li>
  1259. <li data-name="LuCI.network.WifiDevice#set"><a href="LuCI.network.WifiDevice.html#set">set</a></li>
  1260. </ul>
  1261. <ul class="events itemMembers">
  1262. </ul>
  1263. </li>
  1264. <li class="item" data-name="LuCI.network.WifiNetwork">
  1265. <span class="title">
  1266. <a href="LuCI.network.WifiNetwork.html">LuCI.network.WifiNetwork</a>
  1267. </span>
  1268. <ul class="members itemMembers">
  1269. </ul>
  1270. <ul class="typedefs itemMembers">
  1271. </ul>
  1272. <ul class="typedefs itemMembers">
  1273. </ul>
  1274. <ul class="methods itemMembers">
  1275. <span class="subtitle">Methods</span>
  1276. <li data-name="LuCI.network.WifiNetwork#disconnectClient"><a href="LuCI.network.WifiNetwork.html#disconnectClient">disconnectClient</a></li>
  1277. <li data-name="LuCI.network.WifiNetwork#get"><a href="LuCI.network.WifiNetwork.html#get">get</a></li>
  1278. <li data-name="LuCI.network.WifiNetwork#getActiveBSSID"><a href="LuCI.network.WifiNetwork.html#getActiveBSSID">getActiveBSSID</a></li>
  1279. <li data-name="LuCI.network.WifiNetwork#getActiveEncryption"><a href="LuCI.network.WifiNetwork.html#getActiveEncryption">getActiveEncryption</a></li>
  1280. <li data-name="LuCI.network.WifiNetwork#getActiveMode"><a href="LuCI.network.WifiNetwork.html#getActiveMode">getActiveMode</a></li>
  1281. <li data-name="LuCI.network.WifiNetwork#getActiveModeI18n"><a href="LuCI.network.WifiNetwork.html#getActiveModeI18n">getActiveModeI18n</a></li>
  1282. <li data-name="LuCI.network.WifiNetwork#getActiveSSID"><a href="LuCI.network.WifiNetwork.html#getActiveSSID">getActiveSSID</a></li>
  1283. <li data-name="LuCI.network.WifiNetwork#getAssocList"><a href="LuCI.network.WifiNetwork.html#getAssocList">getAssocList</a></li>
  1284. <li data-name="LuCI.network.WifiNetwork#getBitRate"><a href="LuCI.network.WifiNetwork.html#getBitRate">getBitRate</a></li>
  1285. <li data-name="LuCI.network.WifiNetwork#getBSSID"><a href="LuCI.network.WifiNetwork.html#getBSSID">getBSSID</a></li>
  1286. <li data-name="LuCI.network.WifiNetwork#getChannel"><a href="LuCI.network.WifiNetwork.html#getChannel">getChannel</a></li>
  1287. <li data-name="LuCI.network.WifiNetwork#getCountryCode"><a href="LuCI.network.WifiNetwork.html#getCountryCode">getCountryCode</a></li>
  1288. <li data-name="LuCI.network.WifiNetwork#getDevice"><a href="LuCI.network.WifiNetwork.html#getDevice">getDevice</a></li>
  1289. <li data-name="LuCI.network.WifiNetwork#getFrequency"><a href="LuCI.network.WifiNetwork.html#getFrequency">getFrequency</a></li>
  1290. <li data-name="LuCI.network.WifiNetwork#getI18n"><a href="LuCI.network.WifiNetwork.html#getI18n">getI18n</a></li>
  1291. <li data-name="LuCI.network.WifiNetwork#getID"><a href="LuCI.network.WifiNetwork.html#getID">getID</a></li>
  1292. <li data-name="LuCI.network.WifiNetwork#getIfname"><a href="LuCI.network.WifiNetwork.html#getIfname">getIfname</a></li>
  1293. <li data-name="LuCI.network.WifiNetwork#getMeshID"><a href="LuCI.network.WifiNetwork.html#getMeshID">getMeshID</a></li>
  1294. <li data-name="LuCI.network.WifiNetwork#getMode"><a href="LuCI.network.WifiNetwork.html#getMode">getMode</a></li>
  1295. <li data-name="LuCI.network.WifiNetwork#getName"><a href="LuCI.network.WifiNetwork.html#getName">getName</a></li>
  1296. <li data-name="LuCI.network.WifiNetwork#getNetwork"><a href="LuCI.network.WifiNetwork.html#getNetwork">getNetwork</a></li>
  1297. <li data-name="LuCI.network.WifiNetwork#getNetworkNames"><a href="LuCI.network.WifiNetwork.html#getNetworkNames">getNetworkNames</a></li>
  1298. <li data-name="LuCI.network.WifiNetwork#getNetworks"><a href="LuCI.network.WifiNetwork.html#getNetworks">getNetworks</a></li>
  1299. <li data-name="LuCI.network.WifiNetwork#getNoise"><a href="LuCI.network.WifiNetwork.html#getNoise">getNoise</a></li>
  1300. <li data-name="LuCI.network.WifiNetwork#getShortName"><a href="LuCI.network.WifiNetwork.html#getShortName">getShortName</a></li>
  1301. <li data-name="LuCI.network.WifiNetwork#getSignal"><a href="LuCI.network.WifiNetwork.html#getSignal">getSignal</a></li>
  1302. <li data-name="LuCI.network.WifiNetwork#getSignalLevel"><a href="LuCI.network.WifiNetwork.html#getSignalLevel">getSignalLevel</a></li>
  1303. <li data-name="LuCI.network.WifiNetwork#getSignalPercent"><a href="LuCI.network.WifiNetwork.html#getSignalPercent">getSignalPercent</a></li>
  1304. <li data-name="LuCI.network.WifiNetwork#getSSID"><a href="LuCI.network.WifiNetwork.html#getSSID">getSSID</a></li>
  1305. <li data-name="LuCI.network.WifiNetwork#getTXPower"><a href="LuCI.network.WifiNetwork.html#getTXPower">getTXPower</a></li>
  1306. <li data-name="LuCI.network.WifiNetwork#getTXPowerOffset"><a href="LuCI.network.WifiNetwork.html#getTXPowerOffset">getTXPowerOffset</a></li>
  1307. <li data-name="LuCI.network.WifiNetwork#getWifiDevice"><a href="LuCI.network.WifiNetwork.html#getWifiDevice">getWifiDevice</a></li>
  1308. <li data-name="LuCI.network.WifiNetwork#getWifiDeviceName"><a href="LuCI.network.WifiNetwork.html#getWifiDeviceName">getWifiDeviceName</a></li>
  1309. <li data-name="LuCI.network.WifiNetwork#isClientDisconnectSupported"><a href="LuCI.network.WifiNetwork.html#isClientDisconnectSupported">isClientDisconnectSupported</a></li>
  1310. <li data-name="LuCI.network.WifiNetwork#isDisabled"><a href="LuCI.network.WifiNetwork.html#isDisabled">isDisabled</a></li>
  1311. <li data-name="LuCI.network.WifiNetwork#isUp"><a href="LuCI.network.WifiNetwork.html#isUp">isUp</a></li>
  1312. <li data-name="LuCI.network.WifiNetwork#set"><a href="LuCI.network.WifiNetwork.html#set">set</a></li>
  1313. </ul>
  1314. <ul class="events itemMembers">
  1315. </ul>
  1316. </li>
  1317. <li class="item" data-name="LuCI.poll">
  1318. <span class="title">
  1319. <a href="LuCI.poll.html">LuCI.poll</a>
  1320. </span>
  1321. <ul class="members itemMembers">
  1322. </ul>
  1323. <ul class="typedefs itemMembers">
  1324. </ul>
  1325. <ul class="typedefs itemMembers">
  1326. </ul>
  1327. <ul class="methods itemMembers">
  1328. <span class="subtitle">Methods</span>
  1329. <li data-name="LuCI.poll#active"><a href="LuCI.poll.html#active">active</a></li>
  1330. <li data-name="LuCI.poll#add"><a href="LuCI.poll.html#add">add</a></li>
  1331. <li data-name="LuCI.poll#remove"><a href="LuCI.poll.html#remove">remove</a></li>
  1332. <li data-name="LuCI.poll#start"><a href="LuCI.poll.html#start">start</a></li>
  1333. <li data-name="LuCI.poll#stop"><a href="LuCI.poll.html#stop">stop</a></li>
  1334. </ul>
  1335. <ul class="events itemMembers">
  1336. </ul>
  1337. </li>
  1338. <li class="item" data-name="LuCI.request">
  1339. <span class="title">
  1340. <a href="LuCI.request.html">LuCI.request</a>
  1341. </span>
  1342. <ul class="members itemMembers">
  1343. </ul>
  1344. <ul class="typedefs itemMembers">
  1345. <span class="subtitle">Typedefs</span>
  1346. <li data-name="LuCI.request.interceptorFn"><a href="LuCI.request.html#.interceptorFn">interceptorFn</a></li>
  1347. <li data-name="LuCI.request.RequestOptions"><a href="LuCI.request.html#.RequestOptions">RequestOptions</a></li>
  1348. </ul>
  1349. <ul class="typedefs itemMembers">
  1350. </ul>
  1351. <ul class="methods itemMembers">
  1352. <span class="subtitle">Methods</span>
  1353. <li data-name="LuCI.request#addInterceptor"><a href="LuCI.request.html#addInterceptor">addInterceptor</a></li>
  1354. <li data-name="LuCI.request#expandURL"><a href="LuCI.request.html#expandURL">expandURL</a></li>
  1355. <li data-name="LuCI.request#get"><a href="LuCI.request.html#get">get</a></li>
  1356. <li data-name="LuCI.request#post"><a href="LuCI.request.html#post">post</a></li>
  1357. <li data-name="LuCI.request#removeInterceptor"><a href="LuCI.request.html#removeInterceptor">removeInterceptor</a></li>
  1358. <li data-name="LuCI.request#request"><a href="LuCI.request.html#request">request</a></li>
  1359. </ul>
  1360. <ul class="events itemMembers">
  1361. </ul>
  1362. </li>
  1363. <li class="item" data-name="LuCI.request.poll">
  1364. <span class="title">
  1365. <a href="LuCI.request.poll.html">LuCI.request.poll</a>
  1366. </span>
  1367. <ul class="members itemMembers">
  1368. </ul>
  1369. <ul class="typedefs itemMembers">
  1370. <span class="subtitle">Typedefs</span>
  1371. <li data-name="LuCI.request.poll~callbackFn"><a href="LuCI.request.poll.html#~callbackFn">callbackFn</a></li>
  1372. </ul>
  1373. <ul class="typedefs itemMembers">
  1374. </ul>
  1375. <ul class="methods itemMembers">
  1376. <span class="subtitle">Methods</span>
  1377. <li data-name="LuCI.request.poll#active"><a href="LuCI.request.poll.html#active">active</a></li>
  1378. <li data-name="LuCI.request.poll#add"><a href="LuCI.request.poll.html#add">add</a></li>
  1379. <li data-name="LuCI.request.poll#remove"><a href="LuCI.request.poll.html#remove">remove</a></li>
  1380. <li data-name="LuCI.request.poll#start"><a href="LuCI.request.poll.html#start">start</a></li>
  1381. <li data-name="LuCI.request.poll#stop"><a href="LuCI.request.poll.html#stop">stop</a></li>
  1382. </ul>
  1383. <ul class="events itemMembers">
  1384. </ul>
  1385. </li>
  1386. <li class="item" data-name="LuCI.response">
  1387. <span class="title">
  1388. <a href="LuCI.response.html">LuCI.response</a>
  1389. </span>
  1390. <ul class="members itemMembers">
  1391. <span class="subtitle">Members</span>
  1392. <li data-name="LuCI.response#duration"><a href="LuCI.response.html#duration">duration</a></li>
  1393. <li data-name="LuCI.response#headers"><a href="LuCI.response.html#headers">headers</a></li>
  1394. <li data-name="LuCI.response#ok"><a href="LuCI.response.html#ok">ok</a></li>
  1395. <li data-name="LuCI.response#status"><a href="LuCI.response.html#status">status</a></li>
  1396. <li data-name="LuCI.response#statusText"><a href="LuCI.response.html#statusText">statusText</a></li>
  1397. <li data-name="LuCI.response#url"><a href="LuCI.response.html#url">url</a></li>
  1398. </ul>
  1399. <ul class="typedefs itemMembers">
  1400. </ul>
  1401. <ul class="typedefs itemMembers">
  1402. </ul>
  1403. <ul class="methods itemMembers">
  1404. <span class="subtitle">Methods</span>
  1405. <li data-name="LuCI.response#blob"><a href="LuCI.response.html#blob">blob</a></li>
  1406. <li data-name="LuCI.response#clone"><a href="LuCI.response.html#clone">clone</a></li>
  1407. <li data-name="LuCI.response#json"><a href="LuCI.response.html#json">json</a></li>
  1408. <li data-name="LuCI.response#text"><a href="LuCI.response.html#text">text</a></li>
  1409. </ul>
  1410. <ul class="events itemMembers">
  1411. </ul>
  1412. </li>
  1413. <li class="item" data-name="LuCI.rpc">
  1414. <span class="title">
  1415. <a href="LuCI.rpc.html">LuCI.rpc</a>
  1416. </span>
  1417. <ul class="members itemMembers">
  1418. </ul>
  1419. <ul class="typedefs itemMembers">
  1420. <span class="subtitle">Typedefs</span>
  1421. <li data-name="LuCI.rpc.DeclareOptions"><a href="LuCI.rpc.html#.DeclareOptions">DeclareOptions</a></li>
  1422. <li data-name="LuCI.rpc~filterFn"><a href="LuCI.rpc.html#~filterFn">filterFn</a></li>
  1423. <li data-name="LuCI.rpc~interceptorFn"><a href="LuCI.rpc.html#~interceptorFn">interceptorFn</a></li>
  1424. <li data-name="LuCI.rpc~invokeFn"><a href="LuCI.rpc.html#~invokeFn">invokeFn</a></li>
  1425. </ul>
  1426. <ul class="typedefs itemMembers">
  1427. </ul>
  1428. <ul class="methods itemMembers">
  1429. <span class="subtitle">Methods</span>
  1430. <li data-name="LuCI.rpc#addInterceptor"><a href="LuCI.rpc.html#addInterceptor">addInterceptor</a></li>
  1431. <li data-name="LuCI.rpc#declare"><a href="LuCI.rpc.html#declare">declare</a></li>
  1432. <li data-name="LuCI.rpc#getBaseURL"><a href="LuCI.rpc.html#getBaseURL">getBaseURL</a></li>
  1433. <li data-name="LuCI.rpc#getSessionID"><a href="LuCI.rpc.html#getSessionID">getSessionID</a></li>
  1434. <li data-name="LuCI.rpc#getStatusText"><a href="LuCI.rpc.html#getStatusText">getStatusText</a></li>
  1435. <li data-name="LuCI.rpc#list"><a href="LuCI.rpc.html#list">list</a></li>
  1436. <li data-name="LuCI.rpc#removeInterceptor"><a href="LuCI.rpc.html#removeInterceptor">removeInterceptor</a></li>
  1437. <li data-name="LuCI.rpc#setBaseURL"><a href="LuCI.rpc.html#setBaseURL">setBaseURL</a></li>
  1438. <li data-name="LuCI.rpc#setSessionID"><a href="LuCI.rpc.html#setSessionID">setSessionID</a></li>
  1439. </ul>
  1440. <ul class="events itemMembers">
  1441. </ul>
  1442. </li>
  1443. <li class="item" data-name="LuCI.session">
  1444. <span class="title">
  1445. <a href="LuCI.session.html">LuCI.session</a>
  1446. </span>
  1447. <ul class="members itemMembers">
  1448. </ul>
  1449. <ul class="typedefs itemMembers">
  1450. </ul>
  1451. <ul class="typedefs itemMembers">
  1452. </ul>
  1453. <ul class="methods itemMembers">
  1454. <span class="subtitle">Methods</span>
  1455. <li data-name="LuCI.session#getID"><a href="LuCI.session.html#getID">getID</a></li>
  1456. <li data-name="LuCI.session#getLocalData"><a href="LuCI.session.html#getLocalData">getLocalData</a></li>
  1457. <li data-name="LuCI.session#getToken"><a href="LuCI.session.html#getToken">getToken</a></li>
  1458. <li data-name="LuCI.session#setLocalData"><a href="LuCI.session.html#setLocalData">setLocalData</a></li>
  1459. </ul>
  1460. <ul class="events itemMembers">
  1461. </ul>
  1462. </li>
  1463. <li class="item" data-name="LuCI.uci">
  1464. <span class="title">
  1465. <a href="LuCI.uci.html">LuCI.uci</a>
  1466. </span>
  1467. <ul class="members itemMembers">
  1468. </ul>
  1469. <ul class="typedefs itemMembers">
  1470. <span class="subtitle">Typedefs</span>
  1471. <li data-name="LuCI.uci.ChangeRecord"><a href="LuCI.uci.html#.ChangeRecord">ChangeRecord</a></li>
  1472. <li data-name="LuCI.uci.SectionObject"><a href="LuCI.uci.html#.SectionObject">SectionObject</a></li>
  1473. <li data-name="LuCI.uci~sectionsFn"><a href="LuCI.uci.html#~sectionsFn">sectionsFn</a></li>
  1474. </ul>
  1475. <ul class="typedefs itemMembers">
  1476. </ul>
  1477. <ul class="methods itemMembers">
  1478. <span class="subtitle">Methods</span>
  1479. <li data-name="LuCI.uci#add"><a href="LuCI.uci.html#add">add</a></li>
  1480. <li data-name="LuCI.uci#apply"><a href="LuCI.uci.html#apply">apply</a></li>
  1481. <li data-name="LuCI.uci#changes"><a href="LuCI.uci.html#changes">changes</a></li>
  1482. <li data-name="LuCI.uci#createSID"><a href="LuCI.uci.html#createSID">createSID</a></li>
  1483. <li data-name="LuCI.uci#get"><a href="LuCI.uci.html#get">get</a></li>
  1484. <li data-name="LuCI.uci#get_first"><a href="LuCI.uci.html#get_first">get_first</a></li>
  1485. <li data-name="LuCI.uci#load"><a href="LuCI.uci.html#load">load</a></li>
  1486. <li data-name="LuCI.uci#move"><a href="LuCI.uci.html#move">move</a></li>
  1487. <li data-name="LuCI.uci#remove"><a href="LuCI.uci.html#remove">remove</a></li>
  1488. <li data-name="LuCI.uci#resolveSID"><a href="LuCI.uci.html#resolveSID">resolveSID</a></li>
  1489. <li data-name="LuCI.uci#save"><a href="LuCI.uci.html#save">save</a></li>
  1490. <li data-name="LuCI.uci#sections"><a href="LuCI.uci.html#sections">sections</a></li>
  1491. <li data-name="LuCI.uci#set"><a href="LuCI.uci.html#set">set</a></li>
  1492. <li data-name="LuCI.uci#set_first"><a href="LuCI.uci.html#set_first">set_first</a></li>
  1493. <li data-name="LuCI.uci#unload"><a href="LuCI.uci.html#unload">unload</a></li>
  1494. <li data-name="LuCI.uci#unset"><a href="LuCI.uci.html#unset">unset</a></li>
  1495. <li data-name="LuCI.uci#unset_first"><a href="LuCI.uci.html#unset_first">unset_first</a></li>
  1496. </ul>
  1497. <ul class="events itemMembers">
  1498. </ul>
  1499. </li>
  1500. <li class="item" data-name="LuCI.ui">
  1501. <span class="title">
  1502. <a href="LuCI.ui.html">LuCI.ui</a>
  1503. </span>
  1504. <ul class="members itemMembers">
  1505. </ul>
  1506. <ul class="typedefs itemMembers">
  1507. <span class="subtitle">Typedefs</span>
  1508. <li data-name="LuCI.ui.FileUploadReply"><a href="LuCI.ui.html#.FileUploadReply">FileUploadReply</a></li>
  1509. </ul>
  1510. <ul class="typedefs itemMembers">
  1511. </ul>
  1512. <ul class="methods itemMembers">
  1513. <span class="subtitle">Methods</span>
  1514. <li data-name="LuCI.ui#addNotification"><a href="LuCI.ui.html#addNotification">addNotification</a></li>
  1515. <li data-name="LuCI.ui#addValidator"><a href="LuCI.ui.html#addValidator">addValidator</a></li>
  1516. <li data-name="LuCI.ui#awaitReconnect"><a href="LuCI.ui.html#awaitReconnect">awaitReconnect</a></li>
  1517. <li data-name="LuCI.ui#createHandlerFn"><a href="LuCI.ui.html#createHandlerFn">createHandlerFn</a></li>
  1518. <li data-name="LuCI.ui#hideIndicator"><a href="LuCI.ui.html#hideIndicator">hideIndicator</a></li>
  1519. <li data-name="LuCI.ui#hideModal"><a href="LuCI.ui.html#hideModal">hideModal</a></li>
  1520. <li data-name="LuCI.ui#instantiateView"><a href="LuCI.ui.html#instantiateView">instantiateView</a></li>
  1521. <li data-name="LuCI.ui#itemlist"><a href="LuCI.ui.html#itemlist">itemlist</a></li>
  1522. <li data-name="LuCI.ui#pingDevice"><a href="LuCI.ui.html#pingDevice">pingDevice</a></li>
  1523. <li data-name="LuCI.ui#showIndicator"><a href="LuCI.ui.html#showIndicator">showIndicator</a></li>
  1524. <li data-name="LuCI.ui#showModal"><a href="LuCI.ui.html#showModal">showModal</a></li>
  1525. <li data-name="LuCI.ui#uploadFile"><a href="LuCI.ui.html#uploadFile">uploadFile</a></li>
  1526. </ul>
  1527. <ul class="events itemMembers">
  1528. </ul>
  1529. </li>
  1530. <li class="item" data-name="LuCI.ui.AbstractElement">
  1531. <span class="title">
  1532. <a href="LuCI.ui.AbstractElement.html">LuCI.ui.AbstractElement</a>
  1533. </span>
  1534. <ul class="members itemMembers">
  1535. </ul>
  1536. <ul class="typedefs itemMembers">
  1537. <span class="subtitle">Typedefs</span>
  1538. <li data-name="LuCI.ui.AbstractElement.InitOptions"><a href="LuCI.ui.AbstractElement.html#.InitOptions">InitOptions</a></li>
  1539. </ul>
  1540. <ul class="typedefs itemMembers">
  1541. </ul>
  1542. <ul class="methods itemMembers">
  1543. <span class="subtitle">Methods</span>
  1544. <li data-name="LuCI.ui.AbstractElement#getValue"><a href="LuCI.ui.AbstractElement.html#getValue">getValue</a></li>
  1545. <li data-name="LuCI.ui.AbstractElement#isChanged"><a href="LuCI.ui.AbstractElement.html#isChanged">isChanged</a></li>
  1546. <li data-name="LuCI.ui.AbstractElement#isValid"><a href="LuCI.ui.AbstractElement.html#isValid">isValid</a></li>
  1547. <li data-name="LuCI.ui.AbstractElement#registerEvents"><a href="LuCI.ui.AbstractElement.html#registerEvents">registerEvents</a></li>
  1548. <li data-name="LuCI.ui.AbstractElement#render"><a href="LuCI.ui.AbstractElement.html#render">render</a></li>
  1549. <li data-name="LuCI.ui.AbstractElement#setChangeEvents"><a href="LuCI.ui.AbstractElement.html#setChangeEvents">setChangeEvents</a></li>
  1550. <li data-name="LuCI.ui.AbstractElement#setPlaceholder"><a href="LuCI.ui.AbstractElement.html#setPlaceholder">setPlaceholder</a></li>
  1551. <li data-name="LuCI.ui.AbstractElement#setUpdateEvents"><a href="LuCI.ui.AbstractElement.html#setUpdateEvents">setUpdateEvents</a></li>
  1552. <li data-name="LuCI.ui.AbstractElement#setValue"><a href="LuCI.ui.AbstractElement.html#setValue">setValue</a></li>
  1553. <li data-name="LuCI.ui.AbstractElement#triggerValidation"><a href="LuCI.ui.AbstractElement.html#triggerValidation">triggerValidation</a></li>
  1554. </ul>
  1555. <ul class="events itemMembers">
  1556. </ul>
  1557. </li>
  1558. <li class="item" data-name="LuCI.ui.changes">
  1559. <span class="title">
  1560. <a href="LuCI.ui.changes.html">LuCI.ui.changes</a>
  1561. </span>
  1562. <ul class="members itemMembers">
  1563. </ul>
  1564. <ul class="typedefs itemMembers">
  1565. </ul>
  1566. <ul class="typedefs itemMembers">
  1567. </ul>
  1568. <ul class="methods itemMembers">
  1569. <span class="subtitle">Methods</span>
  1570. <li data-name="LuCI.ui.changes#apply"><a href="LuCI.ui.changes.html#apply">apply</a></li>
  1571. <li data-name="LuCI.ui.changes#displayChanges"><a href="LuCI.ui.changes.html#displayChanges">displayChanges</a></li>
  1572. <li data-name="LuCI.ui.changes#renderChangeIndicator"><a href="LuCI.ui.changes.html#renderChangeIndicator">renderChangeIndicator</a></li>
  1573. <li data-name="LuCI.ui.changes#revert"><a href="LuCI.ui.changes.html#revert">revert</a></li>
  1574. <li data-name="LuCI.ui.changes#setIndicator"><a href="LuCI.ui.changes.html#setIndicator">setIndicator</a></li>
  1575. </ul>
  1576. <ul class="events itemMembers">
  1577. </ul>
  1578. </li>
  1579. <li class="item" data-name="LuCI.ui.Checkbox">
  1580. <span class="title">
  1581. <a href="LuCI.ui.Checkbox.html">LuCI.ui.Checkbox</a>
  1582. </span>
  1583. <ul class="members itemMembers">
  1584. </ul>
  1585. <ul class="typedefs itemMembers">
  1586. <span class="subtitle">Typedefs</span>
  1587. <li data-name="LuCI.ui.Checkbox.InitOptions"><a href="LuCI.ui.Checkbox.html#.InitOptions">InitOptions</a></li>
  1588. </ul>
  1589. <ul class="typedefs itemMembers">
  1590. </ul>
  1591. <ul class="methods itemMembers">
  1592. <span class="subtitle">Methods</span>
  1593. <li data-name="LuCI.ui.Checkbox#getValue"><a href="LuCI.ui.Checkbox.html#getValue">getValue</a></li>
  1594. <li data-name="LuCI.ui.Checkbox#isChanged"><a href="LuCI.ui.Checkbox.html#isChanged">isChanged</a></li>
  1595. <li data-name="LuCI.ui.Checkbox#isChecked"><a href="LuCI.ui.Checkbox.html#isChecked">isChecked</a></li>
  1596. <li data-name="LuCI.ui.Checkbox#isValid"><a href="LuCI.ui.Checkbox.html#isValid">isValid</a></li>
  1597. <li data-name="LuCI.ui.Checkbox#registerEvents"><a href="LuCI.ui.Checkbox.html#registerEvents">registerEvents</a></li>
  1598. <li data-name="LuCI.ui.Checkbox#render"><a href="LuCI.ui.Checkbox.html#render">render</a></li>
  1599. <li data-name="LuCI.ui.Checkbox#setChangeEvents"><a href="LuCI.ui.Checkbox.html#setChangeEvents">setChangeEvents</a></li>
  1600. <li data-name="LuCI.ui.Checkbox#setPlaceholder"><a href="LuCI.ui.Checkbox.html#setPlaceholder">setPlaceholder</a></li>
  1601. <li data-name="LuCI.ui.Checkbox#setUpdateEvents"><a href="LuCI.ui.Checkbox.html#setUpdateEvents">setUpdateEvents</a></li>
  1602. <li data-name="LuCI.ui.Checkbox#setValue"><a href="LuCI.ui.Checkbox.html#setValue">setValue</a></li>
  1603. <li data-name="LuCI.ui.Checkbox#triggerValidation"><a href="LuCI.ui.Checkbox.html#triggerValidation">triggerValidation</a></li>
  1604. </ul>
  1605. <ul class="events itemMembers">
  1606. </ul>
  1607. </li>
  1608. <li class="item" data-name="LuCI.ui.Combobox">
  1609. <span class="title">
  1610. <a href="LuCI.ui.Combobox.html">LuCI.ui.Combobox</a>
  1611. </span>
  1612. <ul class="members itemMembers">
  1613. </ul>
  1614. <ul class="typedefs itemMembers">
  1615. <span class="subtitle">Typedefs</span>
  1616. <li data-name="LuCI.ui.Combobox.InitOptions"><a href="LuCI.ui.Combobox.html#.InitOptions">InitOptions</a></li>
  1617. </ul>
  1618. <ul class="typedefs itemMembers">
  1619. </ul>
  1620. <ul class="methods itemMembers">
  1621. <span class="subtitle">Methods</span>
  1622. <li data-name="LuCI.ui.Combobox#addChoices"><a href="LuCI.ui.Combobox.html#addChoices">addChoices</a></li>
  1623. <li data-name="LuCI.ui.Combobox#clearChoices"><a href="LuCI.ui.Combobox.html#clearChoices">clearChoices</a></li>
  1624. <li data-name="LuCI.ui.Combobox#closeAllDropdowns"><a href="LuCI.ui.Combobox.html#closeAllDropdowns">closeAllDropdowns</a></li>
  1625. <li data-name="LuCI.ui.Combobox#isChanged"><a href="LuCI.ui.Combobox.html#isChanged">isChanged</a></li>
  1626. <li data-name="LuCI.ui.Combobox#isValid"><a href="LuCI.ui.Combobox.html#isValid">isValid</a></li>
  1627. <li data-name="LuCI.ui.Combobox#registerEvents"><a href="LuCI.ui.Combobox.html#registerEvents">registerEvents</a></li>
  1628. <li data-name="LuCI.ui.Combobox#setChangeEvents"><a href="LuCI.ui.Combobox.html#setChangeEvents">setChangeEvents</a></li>
  1629. <li data-name="LuCI.ui.Combobox#setPlaceholder"><a href="LuCI.ui.Combobox.html#setPlaceholder">setPlaceholder</a></li>
  1630. <li data-name="LuCI.ui.Combobox#setUpdateEvents"><a href="LuCI.ui.Combobox.html#setUpdateEvents">setUpdateEvents</a></li>
  1631. <li data-name="LuCI.ui.Combobox#triggerValidation"><a href="LuCI.ui.Combobox.html#triggerValidation">triggerValidation</a></li>
  1632. </ul>
  1633. <ul class="events itemMembers">
  1634. </ul>
  1635. </li>
  1636. <li class="item" data-name="LuCI.ui.ComboButton">
  1637. <span class="title">
  1638. <a href="LuCI.ui.ComboButton.html">LuCI.ui.ComboButton</a>
  1639. </span>
  1640. <ul class="members itemMembers">
  1641. </ul>
  1642. <ul class="typedefs itemMembers">
  1643. <span class="subtitle">Typedefs</span>
  1644. <li data-name="LuCI.ui.ComboButton.InitOptions"><a href="LuCI.ui.ComboButton.html#.InitOptions">InitOptions</a></li>
  1645. </ul>
  1646. <ul class="typedefs itemMembers">
  1647. </ul>
  1648. <ul class="methods itemMembers">
  1649. <span class="subtitle">Methods</span>
  1650. <li data-name="LuCI.ui.ComboButton#addChoices"><a href="LuCI.ui.ComboButton.html#addChoices">addChoices</a></li>
  1651. <li data-name="LuCI.ui.ComboButton#clearChoices"><a href="LuCI.ui.ComboButton.html#clearChoices">clearChoices</a></li>
  1652. <li data-name="LuCI.ui.ComboButton#closeAllDropdowns"><a href="LuCI.ui.ComboButton.html#closeAllDropdowns">closeAllDropdowns</a></li>
  1653. <li data-name="LuCI.ui.ComboButton#isChanged"><a href="LuCI.ui.ComboButton.html#isChanged">isChanged</a></li>
  1654. <li data-name="LuCI.ui.ComboButton#isValid"><a href="LuCI.ui.ComboButton.html#isValid">isValid</a></li>
  1655. <li data-name="LuCI.ui.ComboButton#registerEvents"><a href="LuCI.ui.ComboButton.html#registerEvents">registerEvents</a></li>
  1656. <li data-name="LuCI.ui.ComboButton#setChangeEvents"><a href="LuCI.ui.ComboButton.html#setChangeEvents">setChangeEvents</a></li>
  1657. <li data-name="LuCI.ui.ComboButton#setPlaceholder"><a href="LuCI.ui.ComboButton.html#setPlaceholder">setPlaceholder</a></li>
  1658. <li data-name="LuCI.ui.ComboButton#setUpdateEvents"><a href="LuCI.ui.ComboButton.html#setUpdateEvents">setUpdateEvents</a></li>
  1659. <li data-name="LuCI.ui.ComboButton#triggerValidation"><a href="LuCI.ui.ComboButton.html#triggerValidation">triggerValidation</a></li>
  1660. </ul>
  1661. <ul class="events itemMembers">
  1662. </ul>
  1663. </li>
  1664. <li class="item" data-name="LuCI.ui.Dropdown">
  1665. <span class="title">
  1666. <a href="LuCI.ui.Dropdown.html">LuCI.ui.Dropdown</a>
  1667. </span>
  1668. <ul class="members itemMembers">
  1669. </ul>
  1670. <ul class="typedefs itemMembers">
  1671. <span class="subtitle">Typedefs</span>
  1672. <li data-name="LuCI.ui.Dropdown.InitOptions"><a href="LuCI.ui.Dropdown.html#.InitOptions">InitOptions</a></li>
  1673. </ul>
  1674. <ul class="typedefs itemMembers">
  1675. </ul>
  1676. <ul class="methods itemMembers">
  1677. <span class="subtitle">Methods</span>
  1678. <li data-name="LuCI.ui.Dropdown#addChoices"><a href="LuCI.ui.Dropdown.html#addChoices">addChoices</a></li>
  1679. <li data-name="LuCI.ui.Dropdown#clearChoices"><a href="LuCI.ui.Dropdown.html#clearChoices">clearChoices</a></li>
  1680. <li data-name="LuCI.ui.Dropdown#closeAllDropdowns"><a href="LuCI.ui.Dropdown.html#closeAllDropdowns">closeAllDropdowns</a></li>
  1681. <li data-name="LuCI.ui.Dropdown#getValue"><a href="LuCI.ui.Dropdown.html#getValue">getValue</a></li>
  1682. <li data-name="LuCI.ui.Dropdown#isChanged"><a href="LuCI.ui.Dropdown.html#isChanged">isChanged</a></li>
  1683. <li data-name="LuCI.ui.Dropdown#isValid"><a href="LuCI.ui.Dropdown.html#isValid">isValid</a></li>
  1684. <li data-name="LuCI.ui.Dropdown#registerEvents"><a href="LuCI.ui.Dropdown.html#registerEvents">registerEvents</a></li>
  1685. <li data-name="LuCI.ui.Dropdown#render"><a href="LuCI.ui.Dropdown.html#render">render</a></li>
  1686. <li data-name="LuCI.ui.Dropdown#setChangeEvents"><a href="LuCI.ui.Dropdown.html#setChangeEvents">setChangeEvents</a></li>
  1687. <li data-name="LuCI.ui.Dropdown#setPlaceholder"><a href="LuCI.ui.Dropdown.html#setPlaceholder">setPlaceholder</a></li>
  1688. <li data-name="LuCI.ui.Dropdown#setUpdateEvents"><a href="LuCI.ui.Dropdown.html#setUpdateEvents">setUpdateEvents</a></li>
  1689. <li data-name="LuCI.ui.Dropdown#setValue"><a href="LuCI.ui.Dropdown.html#setValue">setValue</a></li>
  1690. <li data-name="LuCI.ui.Dropdown#triggerValidation"><a href="LuCI.ui.Dropdown.html#triggerValidation">triggerValidation</a></li>
  1691. </ul>
  1692. <ul class="events itemMembers">
  1693. </ul>
  1694. </li>
  1695. <li class="item" data-name="LuCI.ui.DynamicList">
  1696. <span class="title">
  1697. <a href="LuCI.ui.DynamicList.html">LuCI.ui.DynamicList</a>
  1698. </span>
  1699. <ul class="members itemMembers">
  1700. </ul>
  1701. <ul class="typedefs itemMembers">
  1702. <span class="subtitle">Typedefs</span>
  1703. <li data-name="LuCI.ui.DynamicList.InitOptions"><a href="LuCI.ui.DynamicList.html#.InitOptions">InitOptions</a></li>
  1704. </ul>
  1705. <ul class="typedefs itemMembers">
  1706. </ul>
  1707. <ul class="methods itemMembers">
  1708. <span class="subtitle">Methods</span>
  1709. <li data-name="LuCI.ui.DynamicList#addChoices"><a href="LuCI.ui.DynamicList.html#addChoices">addChoices</a></li>
  1710. <li data-name="LuCI.ui.DynamicList#clearChoices"><a href="LuCI.ui.DynamicList.html#clearChoices">clearChoices</a></li>
  1711. <li data-name="LuCI.ui.DynamicList#getValue"><a href="LuCI.ui.DynamicList.html#getValue">getValue</a></li>
  1712. <li data-name="LuCI.ui.DynamicList#isChanged"><a href="LuCI.ui.DynamicList.html#isChanged">isChanged</a></li>
  1713. <li data-name="LuCI.ui.DynamicList#isValid"><a href="LuCI.ui.DynamicList.html#isValid">isValid</a></li>
  1714. <li data-name="LuCI.ui.DynamicList#registerEvents"><a href="LuCI.ui.DynamicList.html#registerEvents">registerEvents</a></li>
  1715. <li data-name="LuCI.ui.DynamicList#render"><a href="LuCI.ui.DynamicList.html#render">render</a></li>
  1716. <li data-name="LuCI.ui.DynamicList#setChangeEvents"><a href="LuCI.ui.DynamicList.html#setChangeEvents">setChangeEvents</a></li>
  1717. <li data-name="LuCI.ui.DynamicList#setPlaceholder"><a href="LuCI.ui.DynamicList.html#setPlaceholder">setPlaceholder</a></li>
  1718. <li data-name="LuCI.ui.DynamicList#setUpdateEvents"><a href="LuCI.ui.DynamicList.html#setUpdateEvents">setUpdateEvents</a></li>
  1719. <li data-name="LuCI.ui.DynamicList#setValue"><a href="LuCI.ui.DynamicList.html#setValue">setValue</a></li>
  1720. <li data-name="LuCI.ui.DynamicList#triggerValidation"><a href="LuCI.ui.DynamicList.html#triggerValidation">triggerValidation</a></li>
  1721. </ul>
  1722. <ul class="events itemMembers">
  1723. </ul>
  1724. </li>
  1725. <li class="item" data-name="LuCI.ui.FileUpload">
  1726. <span class="title">
  1727. <a href="LuCI.ui.FileUpload.html">LuCI.ui.FileUpload</a>
  1728. </span>
  1729. <ul class="members itemMembers">
  1730. </ul>
  1731. <ul class="typedefs itemMembers">
  1732. <span class="subtitle">Typedefs</span>
  1733. <li data-name="LuCI.ui.FileUpload.InitOptions"><a href="LuCI.ui.FileUpload.html#.InitOptions">InitOptions</a></li>
  1734. </ul>
  1735. <ul class="typedefs itemMembers">
  1736. </ul>
  1737. <ul class="methods itemMembers">
  1738. <span class="subtitle">Methods</span>
  1739. <li data-name="LuCI.ui.FileUpload#getValue"><a href="LuCI.ui.FileUpload.html#getValue">getValue</a></li>
  1740. <li data-name="LuCI.ui.FileUpload#isChanged"><a href="LuCI.ui.FileUpload.html#isChanged">isChanged</a></li>
  1741. <li data-name="LuCI.ui.FileUpload#isValid"><a href="LuCI.ui.FileUpload.html#isValid">isValid</a></li>
  1742. <li data-name="LuCI.ui.FileUpload#registerEvents"><a href="LuCI.ui.FileUpload.html#registerEvents">registerEvents</a></li>
  1743. <li data-name="LuCI.ui.FileUpload#render"><a href="LuCI.ui.FileUpload.html#render">render</a></li>
  1744. <li data-name="LuCI.ui.FileUpload#setChangeEvents"><a href="LuCI.ui.FileUpload.html#setChangeEvents">setChangeEvents</a></li>
  1745. <li data-name="LuCI.ui.FileUpload#setPlaceholder"><a href="LuCI.ui.FileUpload.html#setPlaceholder">setPlaceholder</a></li>
  1746. <li data-name="LuCI.ui.FileUpload#setUpdateEvents"><a href="LuCI.ui.FileUpload.html#setUpdateEvents">setUpdateEvents</a></li>
  1747. <li data-name="LuCI.ui.FileUpload#setValue"><a href="LuCI.ui.FileUpload.html#setValue">setValue</a></li>
  1748. <li data-name="LuCI.ui.FileUpload#triggerValidation"><a href="LuCI.ui.FileUpload.html#triggerValidation">triggerValidation</a></li>
  1749. </ul>
  1750. <ul class="events itemMembers">
  1751. </ul>
  1752. </li>
  1753. <li class="item" data-name="LuCI.ui.Hiddenfield">
  1754. <span class="title">
  1755. <a href="LuCI.ui.Hiddenfield.html">LuCI.ui.Hiddenfield</a>
  1756. </span>
  1757. <ul class="members itemMembers">
  1758. </ul>
  1759. <ul class="typedefs itemMembers">
  1760. </ul>
  1761. <ul class="typedefs itemMembers">
  1762. </ul>
  1763. <ul class="methods itemMembers">
  1764. <span class="subtitle">Methods</span>
  1765. <li data-name="LuCI.ui.Hiddenfield#getValue"><a href="LuCI.ui.Hiddenfield.html#getValue">getValue</a></li>
  1766. <li data-name="LuCI.ui.Hiddenfield#isChanged"><a href="LuCI.ui.Hiddenfield.html#isChanged">isChanged</a></li>
  1767. <li data-name="LuCI.ui.Hiddenfield#isValid"><a href="LuCI.ui.Hiddenfield.html#isValid">isValid</a></li>
  1768. <li data-name="LuCI.ui.Hiddenfield#registerEvents"><a href="LuCI.ui.Hiddenfield.html#registerEvents">registerEvents</a></li>
  1769. <li data-name="LuCI.ui.Hiddenfield#render"><a href="LuCI.ui.Hiddenfield.html#render">render</a></li>
  1770. <li data-name="LuCI.ui.Hiddenfield#setChangeEvents"><a href="LuCI.ui.Hiddenfield.html#setChangeEvents">setChangeEvents</a></li>
  1771. <li data-name="LuCI.ui.Hiddenfield#setPlaceholder"><a href="LuCI.ui.Hiddenfield.html#setPlaceholder">setPlaceholder</a></li>
  1772. <li data-name="LuCI.ui.Hiddenfield#setUpdateEvents"><a href="LuCI.ui.Hiddenfield.html#setUpdateEvents">setUpdateEvents</a></li>
  1773. <li data-name="LuCI.ui.Hiddenfield#setValue"><a href="LuCI.ui.Hiddenfield.html#setValue">setValue</a></li>
  1774. <li data-name="LuCI.ui.Hiddenfield#triggerValidation"><a href="LuCI.ui.Hiddenfield.html#triggerValidation">triggerValidation</a></li>
  1775. </ul>
  1776. <ul class="events itemMembers">
  1777. </ul>
  1778. </li>
  1779. <li class="item" data-name="LuCI.ui.menu">
  1780. <span class="title">
  1781. <a href="LuCI.ui.menu.html">LuCI.ui.menu</a>
  1782. </span>
  1783. <ul class="members itemMembers">
  1784. </ul>
  1785. <ul class="typedefs itemMembers">
  1786. <span class="subtitle">Typedefs</span>
  1787. <li data-name="LuCI.ui.menu.MenuNode"><a href="LuCI.ui.menu.html#.MenuNode">MenuNode</a></li>
  1788. </ul>
  1789. <ul class="typedefs itemMembers">
  1790. </ul>
  1791. <ul class="methods itemMembers">
  1792. <span class="subtitle">Methods</span>
  1793. <li data-name="LuCI.ui.menu#flushCache"><a href="LuCI.ui.menu.html#flushCache">flushCache</a></li>
  1794. <li data-name="LuCI.ui.menu#getChildren"><a href="LuCI.ui.menu.html#getChildren">getChildren</a></li>
  1795. <li data-name="LuCI.ui.menu#load"><a href="LuCI.ui.menu.html#load">load</a></li>
  1796. </ul>
  1797. <ul class="events itemMembers">
  1798. </ul>
  1799. </li>
  1800. <li class="item" data-name="LuCI.ui.Select">
  1801. <span class="title">
  1802. <a href="LuCI.ui.Select.html">LuCI.ui.Select</a>
  1803. </span>
  1804. <ul class="members itemMembers">
  1805. </ul>
  1806. <ul class="typedefs itemMembers">
  1807. <span class="subtitle">Typedefs</span>
  1808. <li data-name="LuCI.ui.Select.InitOptions"><a href="LuCI.ui.Select.html#.InitOptions">InitOptions</a></li>
  1809. </ul>
  1810. <ul class="typedefs itemMembers">
  1811. </ul>
  1812. <ul class="methods itemMembers">
  1813. <span class="subtitle">Methods</span>
  1814. <li data-name="LuCI.ui.Select#getValue"><a href="LuCI.ui.Select.html#getValue">getValue</a></li>
  1815. <li data-name="LuCI.ui.Select#isChanged"><a href="LuCI.ui.Select.html#isChanged">isChanged</a></li>
  1816. <li data-name="LuCI.ui.Select#isValid"><a href="LuCI.ui.Select.html#isValid">isValid</a></li>
  1817. <li data-name="LuCI.ui.Select#registerEvents"><a href="LuCI.ui.Select.html#registerEvents">registerEvents</a></li>
  1818. <li data-name="LuCI.ui.Select#render"><a href="LuCI.ui.Select.html#render">render</a></li>
  1819. <li data-name="LuCI.ui.Select#setChangeEvents"><a href="LuCI.ui.Select.html#setChangeEvents">setChangeEvents</a></li>
  1820. <li data-name="LuCI.ui.Select#setPlaceholder"><a href="LuCI.ui.Select.html#setPlaceholder">setPlaceholder</a></li>
  1821. <li data-name="LuCI.ui.Select#setUpdateEvents"><a href="LuCI.ui.Select.html#setUpdateEvents">setUpdateEvents</a></li>
  1822. <li data-name="LuCI.ui.Select#setValue"><a href="LuCI.ui.Select.html#setValue">setValue</a></li>
  1823. <li data-name="LuCI.ui.Select#triggerValidation"><a href="LuCI.ui.Select.html#triggerValidation">triggerValidation</a></li>
  1824. </ul>
  1825. <ul class="events itemMembers">
  1826. </ul>
  1827. </li>
  1828. <li class="item" data-name="LuCI.ui.tabs">
  1829. <span class="title">
  1830. <a href="LuCI.ui.tabs.html">LuCI.ui.tabs</a>
  1831. </span>
  1832. <ul class="members itemMembers">
  1833. </ul>
  1834. <ul class="typedefs itemMembers">
  1835. </ul>
  1836. <ul class="typedefs itemMembers">
  1837. </ul>
  1838. <ul class="methods itemMembers">
  1839. <span class="subtitle">Methods</span>
  1840. <li data-name="LuCI.ui.tabs#initTabGroup"><a href="LuCI.ui.tabs.html#initTabGroup">initTabGroup</a></li>
  1841. <li data-name="LuCI.ui.tabs#isEmptyPane"><a href="LuCI.ui.tabs.html#isEmptyPane">isEmptyPane</a></li>
  1842. </ul>
  1843. <ul class="events itemMembers">
  1844. </ul>
  1845. </li>
  1846. <li class="item" data-name="LuCI.ui.Textarea">
  1847. <span class="title">
  1848. <a href="LuCI.ui.Textarea.html">LuCI.ui.Textarea</a>
  1849. </span>
  1850. <ul class="members itemMembers">
  1851. </ul>
  1852. <ul class="typedefs itemMembers">
  1853. <span class="subtitle">Typedefs</span>
  1854. <li data-name="LuCI.ui.Textarea.InitOptions"><a href="LuCI.ui.Textarea.html#.InitOptions">InitOptions</a></li>
  1855. </ul>
  1856. <ul class="typedefs itemMembers">
  1857. </ul>
  1858. <ul class="methods itemMembers">
  1859. <span class="subtitle">Methods</span>
  1860. <li data-name="LuCI.ui.Textarea#getValue"><a href="LuCI.ui.Textarea.html#getValue">getValue</a></li>
  1861. <li data-name="LuCI.ui.Textarea#isChanged"><a href="LuCI.ui.Textarea.html#isChanged">isChanged</a></li>
  1862. <li data-name="LuCI.ui.Textarea#isValid"><a href="LuCI.ui.Textarea.html#isValid">isValid</a></li>
  1863. <li data-name="LuCI.ui.Textarea#registerEvents"><a href="LuCI.ui.Textarea.html#registerEvents">registerEvents</a></li>
  1864. <li data-name="LuCI.ui.Textarea#render"><a href="LuCI.ui.Textarea.html#render">render</a></li>
  1865. <li data-name="LuCI.ui.Textarea#setChangeEvents"><a href="LuCI.ui.Textarea.html#setChangeEvents">setChangeEvents</a></li>
  1866. <li data-name="LuCI.ui.Textarea#setPlaceholder"><a href="LuCI.ui.Textarea.html#setPlaceholder">setPlaceholder</a></li>
  1867. <li data-name="LuCI.ui.Textarea#setUpdateEvents"><a href="LuCI.ui.Textarea.html#setUpdateEvents">setUpdateEvents</a></li>
  1868. <li data-name="LuCI.ui.Textarea#setValue"><a href="LuCI.ui.Textarea.html#setValue">setValue</a></li>
  1869. <li data-name="LuCI.ui.Textarea#triggerValidation"><a href="LuCI.ui.Textarea.html#triggerValidation">triggerValidation</a></li>
  1870. </ul>
  1871. <ul class="events itemMembers">
  1872. </ul>
  1873. </li>
  1874. <li class="item" data-name="LuCI.ui.Textfield">
  1875. <span class="title">
  1876. <a href="LuCI.ui.Textfield.html">LuCI.ui.Textfield</a>
  1877. </span>
  1878. <ul class="members itemMembers">
  1879. </ul>
  1880. <ul class="typedefs itemMembers">
  1881. <span class="subtitle">Typedefs</span>
  1882. <li data-name="LuCI.ui.Textfield.InitOptions"><a href="LuCI.ui.Textfield.html#.InitOptions">InitOptions</a></li>
  1883. </ul>
  1884. <ul class="typedefs itemMembers">
  1885. </ul>
  1886. <ul class="methods itemMembers">
  1887. <span class="subtitle">Methods</span>
  1888. <li data-name="LuCI.ui.Textfield#getValue"><a href="LuCI.ui.Textfield.html#getValue">getValue</a></li>
  1889. <li data-name="LuCI.ui.Textfield#isChanged"><a href="LuCI.ui.Textfield.html#isChanged">isChanged</a></li>
  1890. <li data-name="LuCI.ui.Textfield#isValid"><a href="LuCI.ui.Textfield.html#isValid">isValid</a></li>
  1891. <li data-name="LuCI.ui.Textfield#registerEvents"><a href="LuCI.ui.Textfield.html#registerEvents">registerEvents</a></li>
  1892. <li data-name="LuCI.ui.Textfield#render"><a href="LuCI.ui.Textfield.html#render">render</a></li>
  1893. <li data-name="LuCI.ui.Textfield#setChangeEvents"><a href="LuCI.ui.Textfield.html#setChangeEvents">setChangeEvents</a></li>
  1894. <li data-name="LuCI.ui.Textfield#setPlaceholder"><a href="LuCI.ui.Textfield.html#setPlaceholder">setPlaceholder</a></li>
  1895. <li data-name="LuCI.ui.Textfield#setUpdateEvents"><a href="LuCI.ui.Textfield.html#setUpdateEvents">setUpdateEvents</a></li>
  1896. <li data-name="LuCI.ui.Textfield#setValue"><a href="LuCI.ui.Textfield.html#setValue">setValue</a></li>
  1897. <li data-name="LuCI.ui.Textfield#triggerValidation"><a href="LuCI.ui.Textfield.html#triggerValidation">triggerValidation</a></li>
  1898. </ul>
  1899. <ul class="events itemMembers">
  1900. </ul>
  1901. </li>
  1902. <li class="item" data-name="LuCI.view">
  1903. <span class="title">
  1904. <a href="LuCI.view.html">LuCI.view</a>
  1905. </span>
  1906. <ul class="members itemMembers">
  1907. </ul>
  1908. <ul class="typedefs itemMembers">
  1909. </ul>
  1910. <ul class="typedefs itemMembers">
  1911. </ul>
  1912. <ul class="methods itemMembers">
  1913. <span class="subtitle">Methods</span>
  1914. <li data-name="LuCI.view#addFooter"><a href="LuCI.view.html#addFooter">addFooter</a></li>
  1915. <li data-name="LuCI.view#handleReset"><a href="LuCI.view.html#handleReset">handleReset</a></li>
  1916. <li data-name="LuCI.view#handleSave"><a href="LuCI.view.html#handleSave">handleSave</a></li>
  1917. <li data-name="LuCI.view#handleSaveApply"><a href="LuCI.view.html#handleSaveApply">handleSaveApply</a></li>
  1918. <li data-name="LuCI.view#load"><a href="LuCI.view.html#load">load</a></li>
  1919. <li data-name="LuCI.view#render"><a href="LuCI.view.html#render">render</a></li>
  1920. </ul>
  1921. <ul class="events itemMembers">
  1922. </ul>
  1923. </li>
  1924. <li class="item" data-name="LuCI.xhr">
  1925. <span class="title">
  1926. <a href="LuCI.xhr.html">LuCI.xhr</a>
  1927. </span>
  1928. <ul class="members itemMembers">
  1929. </ul>
  1930. <ul class="typedefs itemMembers">
  1931. </ul>
  1932. <ul class="typedefs itemMembers">
  1933. </ul>
  1934. <ul class="methods itemMembers">
  1935. <span class="subtitle">Methods</span>
  1936. <li data-name="LuCI.xhr#abort"><a href="LuCI.xhr.html#abort">abort</a></li>
  1937. <li data-name="LuCI.xhr#busy"><a href="LuCI.xhr.html#busy">busy</a></li>
  1938. <li data-name="LuCI.xhr#cancel"><a href="LuCI.xhr.html#cancel">cancel</a></li>
  1939. <li data-name="LuCI.xhr#get"><a href="LuCI.xhr.html#get">get</a></li>
  1940. <li data-name="LuCI.xhr#post"><a href="LuCI.xhr.html#post">post</a></li>
  1941. <li data-name="LuCI.xhr#send_form"><a href="LuCI.xhr.html#send_form">send_form</a></li>
  1942. </ul>
  1943. <ul class="events itemMembers">
  1944. </ul>
  1945. </li>
  1946. </ul>
  1947. </div>
  1948. <div class="main">
  1949. <h1 class="page-title" data-filename="LuCI.form.AbstractValue.html">Class: AbstractValue</h1>
  1950. <section>
  1951. <header>
  1952. <h2>
  1953. <span class="ancestors"><a href="LuCI.html">LuCI</a><a href="LuCI.form.html">.form</a>.</span>
  1954. AbstractValue
  1955. </h2>
  1956. <div class="class-description"><p>The <code>AbstractValue</code> class serves as abstract base for the different form
  1957. option styles implemented by <code>LuCI.form</code>. It provides the common logic for
  1958. handling option input values, for dependencies among options and for
  1959. validation constraints that should be applied to entered values.</p>
  1960. <p>This class is private and not directly accessible by user code.</p></div>
  1961. </header>
  1962. <article>
  1963. <div class="container-overview">
  1964. <dt>
  1965. <div class="nameContainer">
  1966. <h4 class="name" id="AbstractValue">
  1967. new LuCI.form.AbstractValue<span class="signature">()</span>
  1968. </h4>
  1969. <div class="tag-source">
  1970. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1321">line 1321</a>
  1971. </div>
  1972. </div>
  1973. </dt>
  1974. <dd>
  1975. <dl class="details">
  1976. </dl>
  1977. </dd>
  1978. </div>
  1979. <h3 class="subsection-title">Extends</h3>
  1980. <ul>
  1981. <li><a href="LuCI.form.AbstractElement.html">LuCI.form.AbstractElement</a></li>
  1982. </ul>
  1983. <h3 class="subsection-title">Members</h3>
  1984. <dl>
  1985. <dt>
  1986. <div class="nameContainer">
  1987. <h4 class="name" id="datatype">datatype<span class="type-signature type string">string</span> </h4>
  1988. </div>
  1989. </dt>
  1990. <dd>
  1991. <div class="description">
  1992. <p>Specifies a datatype constraint expression to validate input values
  1993. against. Refer to <code>LuCI.validation</code> for details on the format.</p>
  1994. <p>If the user entered input does not match the datatype validation, the
  1995. option element is marked as invalid.</p>
  1996. </div>
  1997. <dl class="details">
  1998. <dt class="tag-default">Default Value:</dt>
  1999. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2000. </dl>
  2001. </dd>
  2002. <dt>
  2003. <div class="nameContainer">
  2004. <h4 class="name" id="default">default<span class="type-signature type *">*</span> </h4>
  2005. </div>
  2006. </dt>
  2007. <dd>
  2008. <div class="description">
  2009. <p>Sets a default value to use when the underlying UCI option is not set.</p>
  2010. </div>
  2011. <dl class="details">
  2012. <dt class="tag-default">Default Value:</dt>
  2013. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2014. </dl>
  2015. </dd>
  2016. <dt>
  2017. <div class="nameContainer">
  2018. <h4 class="name" id="editable">editable<span class="type-signature type boolean">boolean</span> </h4>
  2019. </div>
  2020. </dt>
  2021. <dd>
  2022. <div class="description">
  2023. <p>Mark grid section option element as editable.</p>
  2024. <p>Options which are displayed in the table portion of a <code>GridSection</code>
  2025. instance are rendered as readonly text by default. By setting the
  2026. <code>editable</code> property of a child option element to <code>true</code>, that element
  2027. is rendered as full input widget within its cell instead of a text only
  2028. preview.</p>
  2029. <p>This property has no effect on options that are not children of grid
  2030. section elements.</p>
  2031. </div>
  2032. <dl class="details">
  2033. <dt class="tag-default">Default Value:</dt>
  2034. <dd class="tag-default"><ul class="dummy"><li>false</li></ul></dd>
  2035. </dl>
  2036. </dd>
  2037. <dt>
  2038. <div class="nameContainer">
  2039. <h4 class="name" id="modalonly">modalonly<span class="type-signature type boolean">boolean</span> </h4>
  2040. </div>
  2041. </dt>
  2042. <dd>
  2043. <div class="description">
  2044. <p>Move grid section option element into the table, the modal popup or both.</p>
  2045. <p>If this property is <code>null</code> (the default), the option element is
  2046. displayed in both the table preview area and the per-section instance
  2047. modal popup of a grid section. When it is set to <code>false</code> the option
  2048. is only shown in the table but not the modal popup. When set to <code>true</code>,
  2049. the option is only visible in the modal popup but not the table.</p>
  2050. <p>This property has no effect on options that are not children of grid
  2051. section elements.</p>
  2052. </div>
  2053. <dl class="details">
  2054. <dt class="tag-default">Default Value:</dt>
  2055. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2056. </dl>
  2057. </dd>
  2058. <dt>
  2059. <div class="nameContainer">
  2060. <h4 class="name" id="onchange">onchange<span class="type-signature type function">function</span> </h4>
  2061. </div>
  2062. </dt>
  2063. <dd>
  2064. <div class="description">
  2065. <p>Register a custom value change handler.</p>
  2066. <p>If this property is set to a function value, the function is invoked
  2067. whenever the value of the underlying UI input element is changing.</p>
  2068. <p>The invoked handler function will receive the DOM click element as
  2069. first and the underlying configuration section ID as well as the input
  2070. value as second and third argument respectively.</p>
  2071. </div>
  2072. <dl class="details">
  2073. <dt class="tag-default">Default Value:</dt>
  2074. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2075. </dl>
  2076. </dd>
  2077. <dt>
  2078. <div class="nameContainer">
  2079. <h4 class="name" id="optional">optional<span class="type-signature type boolean">boolean</span> </h4>
  2080. </div>
  2081. </dt>
  2082. <dd>
  2083. <div class="description">
  2084. <p>If set to <code>true</code>, the underlying ui input widget is allowed to be empty,
  2085. otherwise the option element is marked invalid when no value is entered
  2086. or selected by the user.</p>
  2087. </div>
  2088. <dl class="details">
  2089. <dt class="tag-default">Default Value:</dt>
  2090. <dd class="tag-default"><ul class="dummy"><li>false</li></ul></dd>
  2091. </dl>
  2092. </dd>
  2093. <dt>
  2094. <div class="nameContainer">
  2095. <h4 class="name" id="readonly">readonly<span class="type-signature type boolean">boolean</span> </h4>
  2096. </div>
  2097. </dt>
  2098. <dd>
  2099. <div class="description">
  2100. <p>Make option element readonly.</p>
  2101. <p>This property defaults to the readonly state of the parent form element.
  2102. When set to <code>true</code>, the underlying widget is rendered in disabled state,
  2103. means its contents cannot be changed and the widget cannot be interacted
  2104. with.</p>
  2105. </div>
  2106. <dl class="details">
  2107. <dt class="tag-default">Default Value:</dt>
  2108. <dd class="tag-default"><ul class="dummy"><li>false</li></ul></dd>
  2109. </dl>
  2110. </dd>
  2111. <dt>
  2112. <div class="nameContainer">
  2113. <h4 class="name" id="rmempty">rmempty<span class="type-signature type boolean">boolean</span> </h4>
  2114. </div>
  2115. </dt>
  2116. <dd>
  2117. <div class="description">
  2118. <p>If set to <code>false</code>, the underlying option value is retained upon saving
  2119. the form when the option element is disabled due to unsatisfied
  2120. dependency constraints.</p>
  2121. </div>
  2122. <dl class="details">
  2123. <dt class="tag-default">Default Value:</dt>
  2124. <dd class="tag-default"><ul class="dummy"><li>true</li></ul></dd>
  2125. </dl>
  2126. </dd>
  2127. <dt>
  2128. <div class="nameContainer">
  2129. <h4 class="name" id="uciconfig">uciconfig<span class="type-signature type string">string</span> </h4>
  2130. </div>
  2131. </dt>
  2132. <dd>
  2133. <div class="description">
  2134. <p>Override the UCI configuration name to read the option value from.</p>
  2135. <p>By default, the configuration name is inherited from the parent Map.
  2136. By setting this property, a deviating configuration may be specified.</p>
  2137. <p>The default is null, means inheriting from the parent form.</p>
  2138. </div>
  2139. <dl class="details">
  2140. <dt class="tag-default">Default Value:</dt>
  2141. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2142. </dl>
  2143. </dd>
  2144. <dt>
  2145. <div class="nameContainer">
  2146. <h4 class="name" id="ucioption">ucioption<span class="type-signature type string">string</span> </h4>
  2147. </div>
  2148. </dt>
  2149. <dd>
  2150. <div class="description">
  2151. <p>Override the UCI option name to read the value from.</p>
  2152. <p>By default, the elements name, which is passed as third argument to
  2153. the constructor, is used as UCI option name. By setting this property,
  2154. a deviating UCI option may be specified.</p>
  2155. <p>The default is null, means using the option element name.</p>
  2156. </div>
  2157. <dl class="details">
  2158. <dt class="tag-default">Default Value:</dt>
  2159. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2160. </dl>
  2161. </dd>
  2162. <dt>
  2163. <div class="nameContainer">
  2164. <h4 class="name" id="ucisection">ucisection<span class="type-signature type string">string</span> </h4>
  2165. </div>
  2166. </dt>
  2167. <dd>
  2168. <div class="description">
  2169. <p>Override the UCI section name to read the option value from.</p>
  2170. <p>By default, the section ID is inherited from the parent section element.
  2171. By setting this property, a deviating section may be specified.</p>
  2172. <p>The default is null, means inheriting from the parent section.</p>
  2173. </div>
  2174. <dl class="details">
  2175. <dt class="tag-default">Default Value:</dt>
  2176. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2177. </dl>
  2178. </dd>
  2179. <dt>
  2180. <div class="nameContainer">
  2181. <h4 class="name" id="validate">validate<span class="type-signature type function">function</span> </h4>
  2182. </div>
  2183. </dt>
  2184. <dd>
  2185. <div class="description">
  2186. <p>Specifies a custom validation function to test the user input for
  2187. validity. The validation function must return <code>true</code> to accept the
  2188. value. Any other return value type is converted to a string and
  2189. displayed to the user as validation error message.</p>
  2190. <p>If the user entered input does not pass the validation function, the
  2191. option element is marked as invalid.</p>
  2192. </div>
  2193. <dl class="details">
  2194. <dt class="tag-default">Default Value:</dt>
  2195. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2196. </dl>
  2197. </dd>
  2198. <dt>
  2199. <div class="nameContainer">
  2200. <h4 class="name" id="width">width<span class="type-signature type number">number</span> <span class="type-signature type string">string</span> </h4>
  2201. </div>
  2202. </dt>
  2203. <dd>
  2204. <div class="description">
  2205. <p>Override the cell width of a table or grid section child option.</p>
  2206. <p>If the property is set to a numeric value, it is treated as pixel width
  2207. which is set on the containing cell element of the option, essentially
  2208. forcing a certain column width. When the property is set to a string
  2209. value, it is applied as-is to the CSS <code>width</code> property.</p>
  2210. <p>This property has no effect on options that are not children of grid or
  2211. table section elements.</p>
  2212. </div>
  2213. <dl class="details">
  2214. <dt class="tag-default">Default Value:</dt>
  2215. <dd class="tag-default"><ul class="dummy"><li>null</li></ul></dd>
  2216. </dl>
  2217. </dd>
  2218. </dl>
  2219. <h3 class="subsection-title">Methods</h3>
  2220. <dl>
  2221. <dt>
  2222. <div class="nameContainer inherited">
  2223. <h4 class="name" id="append">
  2224. <span class="inherited"><a href="LuCI.form.AbstractElement.html#append">inherited</a></span>
  2225. append<span class="signature">(element)</span>
  2226. </h4>
  2227. <div class="tag-source">
  2228. <a href="form.js.html">form.js</a>, <a href="form.js.html#line210">line 210</a>
  2229. </div>
  2230. </div>
  2231. </dt>
  2232. <dd>
  2233. <div class="description">
  2234. <p>Add another form element as children to this element.</p>
  2235. </div>
  2236. <table class="params">
  2237. <thead>
  2238. <tr>
  2239. <th>Name</th>
  2240. <th>Type</th>
  2241. <th class="last">Description</th>
  2242. </tr>
  2243. </thead>
  2244. <tbody>
  2245. <tr>
  2246. <td class="name"><code>element</code></td>
  2247. <td class="type">
  2248. <span class="param-type">AbstractElement</span>
  2249. </td>
  2250. <td class="description last">
  2251. <p>The form element to add.</p></td>
  2252. </tr>
  2253. </tbody>
  2254. </table>
  2255. <dl class="details">
  2256. </dl>
  2257. </dd>
  2258. <dt>
  2259. <div class="nameContainer">
  2260. <h4 class="name" id="cbid">
  2261. cbid<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string}</span>
  2262. </h4>
  2263. <div class="tag-source">
  2264. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1733">line 1733</a>
  2265. </div>
  2266. </div>
  2267. </dt>
  2268. <dd>
  2269. <div class="description">
  2270. <p>Obtain the internal ID (&quot;cbid&quot;) of the element instance.</p>
  2271. <p>Since each form section element may map multiple underlying
  2272. configuration sections, the configuration section ID is required to
  2273. form a fully qualified ID pointing to the specific element instance
  2274. within the given specific section.</p>
  2275. </div>
  2276. <table class="params">
  2277. <thead>
  2278. <tr>
  2279. <th>Name</th>
  2280. <th>Type</th>
  2281. <th class="last">Description</th>
  2282. </tr>
  2283. </thead>
  2284. <tbody>
  2285. <tr>
  2286. <td class="name"><code>section_id</code></td>
  2287. <td class="type">
  2288. <span class="param-type">string</span>
  2289. </td>
  2290. <td class="description last">
  2291. <p>The configuration section ID</p></td>
  2292. </tr>
  2293. </tbody>
  2294. </table>
  2295. <dl class="details">
  2296. </dl>
  2297. <h5>Throws:</h5>
  2298. <dl>
  2299. <dt>
  2300. <div class="param-desc">
  2301. <p>Throws a <code>TypeError</code> exception when no <code>section_id</code> was specified.</p>
  2302. </div>
  2303. </dt>
  2304. <dt>
  2305. <dl>
  2306. <dt>
  2307. Type
  2308. </dt>
  2309. <dd>
  2310. <span class="param-type">TypeError</span>
  2311. </dd>
  2312. </dl>
  2313. </dt>
  2314. </dl>
  2315. <h5>Returns:</h5>
  2316. <table class="params">
  2317. <thead>
  2318. <tr>
  2319. <th>Type</th>
  2320. <th class="last">Description</th>
  2321. </tr>
  2322. </thead>
  2323. <tbody>
  2324. <tr>
  2325. <td class="type">
  2326. string
  2327. </td>
  2328. <td class="description last">Returns the element ID.</td>
  2329. </tr>
  2330. </tbody>
  2331. </table>
  2332. </dd>
  2333. <dt>
  2334. <div class="nameContainer">
  2335. <h4 class="name" id="cfgvalue">
  2336. cfgvalue<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{*}</span>
  2337. </h4>
  2338. <div class="tag-source">
  2339. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1807">line 1807</a>
  2340. </div>
  2341. </div>
  2342. </dt>
  2343. <dd>
  2344. <div class="description">
  2345. <p>Query the underlying configuration value.</p>
  2346. <p>The default implementation of this method returns the cached return
  2347. value of <a href="LuCI.form.AbstractValue.html#load"><code>load()</code></a>. It may be
  2348. overwritten by user code to obtain the configuration value in a
  2349. different way.</p>
  2350. </div>
  2351. <table class="params">
  2352. <thead>
  2353. <tr>
  2354. <th>Name</th>
  2355. <th>Type</th>
  2356. <th class="last">Description</th>
  2357. </tr>
  2358. </thead>
  2359. <tbody>
  2360. <tr>
  2361. <td class="name"><code>section_id</code></td>
  2362. <td class="type">
  2363. <span class="param-type">string</span>
  2364. </td>
  2365. <td class="description last">
  2366. <p>The configuration section ID</p></td>
  2367. </tr>
  2368. </tbody>
  2369. </table>
  2370. <dl class="details">
  2371. </dl>
  2372. <h5>Throws:</h5>
  2373. <dl>
  2374. <dt>
  2375. <div class="param-desc">
  2376. <p>Throws a <code>TypeError</code> exception when no <code>section_id</code> was specified.</p>
  2377. </div>
  2378. </dt>
  2379. <dt>
  2380. <dl>
  2381. <dt>
  2382. Type
  2383. </dt>
  2384. <dd>
  2385. <span class="param-type">TypeError</span>
  2386. </dd>
  2387. </dl>
  2388. </dt>
  2389. </dl>
  2390. <h5>Returns:</h5>
  2391. <table class="params">
  2392. <thead>
  2393. <tr>
  2394. <th>Type</th>
  2395. <th class="last">Description</th>
  2396. </tr>
  2397. </thead>
  2398. <tbody>
  2399. <tr>
  2400. <td class="type">
  2401. *
  2402. </td>
  2403. <td class="description last">Returns the configuration value.</td>
  2404. </tr>
  2405. </tbody>
  2406. </table>
  2407. </dd>
  2408. <dt>
  2409. <div class="nameContainer">
  2410. <h4 class="name" id="depends">
  2411. depends<span class="signature">(optionname_or_depends, optionvalue|RegExp)</span>
  2412. </h4>
  2413. <div class="tag-source">
  2414. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1615">line 1615</a>
  2415. </div>
  2416. </div>
  2417. </dt>
  2418. <dd>
  2419. <div class="description">
  2420. <p>Add a dependency contraint to the option.</p>
  2421. <p>Dependency constraints allow making the presence of option elements
  2422. dependant on the current values of certain other options within the
  2423. same form. An option element with unsatisfied dependencies will be
  2424. hidden from the view and its current value is omitted when saving.</p>
  2425. <p>Multiple constraints (that is, multiple calls to <code>depends()</code>) are
  2426. treated as alternatives, forming a logical &quot;or&quot; expression.</p>
  2427. <p>By passing an object of name =&gt; value pairs as first argument, it is
  2428. possible to depend on multiple options simultaneously, allowing to form
  2429. a logical &quot;and&quot; expression.</p>
  2430. <p>Option names may be given in &quot;dot notation&quot; which allows to reference
  2431. option elements outside of the current form section. If a name without
  2432. dot is specified, it refers to an option within the same configuration
  2433. section. If specified as <code>configname.sectionid.optionname</code>,
  2434. options anywhere within the same form may be specified.</p>
  2435. <p>The object notation also allows for a number of special keys which are
  2436. not treated as option names but as modifiers to influence the dependency
  2437. constraint evaluation. The associated value of these special &quot;tag&quot; keys
  2438. is ignored. The recognized tags are:</p>
  2439. <ul>
  2440. <li>
  2441. <code>!reverse</code><br>
  2442. Invert the dependency, instead of requiring another option to be
  2443. equal to the dependency value, that option should <em>not</em> be
  2444. equal.
  2445. </li>
  2446. <li>
  2447. <code>!contains</code><br>
  2448. Instead of requiring an exact match, the dependency is considered
  2449. satisfied when the dependency value is contained within the option
  2450. value.
  2451. </li>
  2452. <li>
  2453. <code>!default</code><br>
  2454. The dependency is always satisfied
  2455. </li>
  2456. </ul>
  2457. <p>Examples:</p>
  2458. <ul>
  2459. <li>
  2460. <code>opt.depends("foo", "test")</code><br>
  2461. Require the value of `foo` to be `test`.
  2462. </li>
  2463. <li>
  2464. <code>opt.depends({ foo: "test" })</code><br>
  2465. Equivalent to the previous example.
  2466. </li>
  2467. <li>
  2468. <code>opt.depends({ foo: /test/ })</code><br>
  2469. Require the value of `foo` to match the regular expression `/test/`.
  2470. </li>
  2471. <li>
  2472. <code>opt.depends({ foo: "test", bar: "qrx" })</code><br>
  2473. Require the value of `foo` to be `test` and the value of `bar` to be
  2474. `qrx`.
  2475. </li>
  2476. <li>
  2477. <code>opt.depends({ foo: "test" })<br>
  2478. opt.depends({ bar: "qrx" })</code><br>
  2479. Require either <code>foo</code> to be set to <code>test</code>,
  2480. <em>or</em> the <code>bar</code> option to be <code>qrx</code>.
  2481. </li>
  2482. <li>
  2483. <code>opt.depends("test.section1.foo", "bar")</code><br>
  2484. Require the "foo" form option within the "section1" section to be
  2485. set to "bar".
  2486. </li>
  2487. <li>
  2488. <code>opt.depends({ foo: "test", "!contains": true })</code><br>
  2489. Require the "foo" option value to contain the substring "test".
  2490. </li>
  2491. </ul>
  2492. </div>
  2493. <table class="params">
  2494. <thead>
  2495. <tr>
  2496. <th>Name</th>
  2497. <th>Type</th>
  2498. <th class="last">Description</th>
  2499. </tr>
  2500. </thead>
  2501. <tbody>
  2502. <tr>
  2503. <td class="name"><code>optionname_or_depends</code></td>
  2504. <td class="type">
  2505. <span class="param-type">string</span>
  2506. |
  2507. <span class="param-type">Object.&lt;string, (string|RegExp)></span>
  2508. </td>
  2509. <td class="description last">
  2510. <p>The name of the option to depend on or an object describing multiple
  2511. dependencies which must be satified (a logical &quot;and&quot; expression).</p></td>
  2512. </tr>
  2513. <tr>
  2514. <td class="name"><code>optionvalue|RegExp</code></td>
  2515. <td class="type">
  2516. <span class="param-type">string</span>
  2517. </td>
  2518. <td class="description last">
  2519. <p>When invoked with a plain option name as first argument, this parameter
  2520. specifies the expected value. In case an object is passed as first
  2521. argument, this parameter is ignored.</p></td>
  2522. </tr>
  2523. </tbody>
  2524. </table>
  2525. <dl class="details">
  2526. </dl>
  2527. </dd>
  2528. <dt>
  2529. <div class="nameContainer">
  2530. <h4 class="name" id="formvalue">
  2531. formvalue<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{*}</span>
  2532. </h4>
  2533. <div class="tag-source">
  2534. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1835">line 1835</a>
  2535. </div>
  2536. </div>
  2537. </dt>
  2538. <dd>
  2539. <div class="description">
  2540. <p>Query the current form input value.</p>
  2541. <p>The default implementation of this method returns the current input
  2542. value of the underlying <a href="LuCI.ui.AbstractElement.html"><code>LuCI.ui</code></a> widget.
  2543. It may be overwritten by user code to handle input values differently.</p>
  2544. </div>
  2545. <table class="params">
  2546. <thead>
  2547. <tr>
  2548. <th>Name</th>
  2549. <th>Type</th>
  2550. <th class="last">Description</th>
  2551. </tr>
  2552. </thead>
  2553. <tbody>
  2554. <tr>
  2555. <td class="name"><code>section_id</code></td>
  2556. <td class="type">
  2557. <span class="param-type">string</span>
  2558. </td>
  2559. <td class="description last">
  2560. <p>The configuration section ID</p></td>
  2561. </tr>
  2562. </tbody>
  2563. </table>
  2564. <dl class="details">
  2565. </dl>
  2566. <h5>Throws:</h5>
  2567. <dl>
  2568. <dt>
  2569. <div class="param-desc">
  2570. <p>Throws a <code>TypeError</code> exception when no <code>section_id</code> was specified.</p>
  2571. </div>
  2572. </dt>
  2573. <dt>
  2574. <dl>
  2575. <dt>
  2576. Type
  2577. </dt>
  2578. <dd>
  2579. <span class="param-type">TypeError</span>
  2580. </dd>
  2581. </dl>
  2582. </dt>
  2583. </dl>
  2584. <h5>Returns:</h5>
  2585. <table class="params">
  2586. <thead>
  2587. <tr>
  2588. <th>Type</th>
  2589. <th class="last">Description</th>
  2590. </tr>
  2591. </thead>
  2592. <tbody>
  2593. <tr>
  2594. <td class="type">
  2595. *
  2596. </td>
  2597. <td class="description last">Returns the current input value.</td>
  2598. </tr>
  2599. </tbody>
  2600. </table>
  2601. </dd>
  2602. <dt>
  2603. <div class="nameContainer">
  2604. <h4 class="name" id="getUIElement">
  2605. getUIElement<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="LuCI.ui.AbstractElement.html">LuCI.ui.AbstractElement</a>|null}</span>
  2606. </h4>
  2607. <div class="tag-source">
  2608. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1784">line 1784</a>
  2609. </div>
  2610. </div>
  2611. </dt>
  2612. <dd>
  2613. <div class="description">
  2614. <p>Obtain the underlying <code>LuCI.ui</code> element instance.</p>
  2615. </div>
  2616. <table class="params">
  2617. <thead>
  2618. <tr>
  2619. <th>Name</th>
  2620. <th>Type</th>
  2621. <th class="last">Description</th>
  2622. </tr>
  2623. </thead>
  2624. <tbody>
  2625. <tr>
  2626. <td class="name"><code>section_id</code></td>
  2627. <td class="type">
  2628. <span class="param-type">string</span>
  2629. </td>
  2630. <td class="description last">
  2631. <p>The configuration section ID</p></td>
  2632. </tr>
  2633. </tbody>
  2634. </table>
  2635. <dl class="details">
  2636. </dl>
  2637. <h5>Throws:</h5>
  2638. <dl>
  2639. <dt>
  2640. <div class="param-desc">
  2641. <p>Throws a <code>TypeError</code> exception when no <code>section_id</code> was specified.</p>
  2642. </div>
  2643. </dt>
  2644. <dt>
  2645. <dl>
  2646. <dt>
  2647. Type
  2648. </dt>
  2649. <dd>
  2650. <span class="param-type">TypeError</span>
  2651. </dd>
  2652. </dl>
  2653. </dt>
  2654. </dl>
  2655. <h5>Returns:</h5>
  2656. <table class="params">
  2657. <thead>
  2658. <tr>
  2659. <th>Type</th>
  2660. <th class="last">Description</th>
  2661. </tr>
  2662. </thead>
  2663. <tbody>
  2664. <tr>
  2665. <td class="type">
  2666. <a href="LuCI.ui.AbstractElement.html">LuCI.ui.AbstractElement</a>
  2667. |
  2668. null
  2669. </td>
  2670. <td class="description last">Returns the <code>LuCI.ui</code> element instance or <code>null</code> in case the form
  2671. option implementation does not use <code>LuCI.ui</code> widgets.</td>
  2672. </tr>
  2673. </tbody>
  2674. </table>
  2675. </dd>
  2676. <dt>
  2677. <div class="nameContainer">
  2678. <h4 class="name" id="isActive">
  2679. isActive<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{boolean}</span>
  2680. </h4>
  2681. <div class="tag-source">
  2682. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1923">line 1923</a>
  2683. </div>
  2684. </div>
  2685. </dt>
  2686. <dd>
  2687. <div class="description">
  2688. <p>Test whether the option element is currently active.</p>
  2689. <p>An element is active when it is not hidden due to unsatisfied dependency
  2690. constraints.</p>
  2691. </div>
  2692. <table class="params">
  2693. <thead>
  2694. <tr>
  2695. <th>Name</th>
  2696. <th>Type</th>
  2697. <th class="last">Description</th>
  2698. </tr>
  2699. </thead>
  2700. <tbody>
  2701. <tr>
  2702. <td class="name"><code>section_id</code></td>
  2703. <td class="type">
  2704. <span class="param-type">string</span>
  2705. </td>
  2706. <td class="description last">
  2707. <p>The configuration section ID</p></td>
  2708. </tr>
  2709. </tbody>
  2710. </table>
  2711. <dl class="details">
  2712. </dl>
  2713. <h5>Returns:</h5>
  2714. <table class="params">
  2715. <thead>
  2716. <tr>
  2717. <th>Type</th>
  2718. <th class="last">Description</th>
  2719. </tr>
  2720. </thead>
  2721. <tbody>
  2722. <tr>
  2723. <td class="type">
  2724. boolean
  2725. </td>
  2726. <td class="description last">Returns <code>true</code> if the option element currently is active, otherwise it
  2727. returns <code>false</code>.</td>
  2728. </tr>
  2729. </tbody>
  2730. </table>
  2731. </dd>
  2732. <dt>
  2733. <div class="nameContainer">
  2734. <h4 class="name" id="isValid">
  2735. isValid<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{boolean}</span>
  2736. </h4>
  2737. <div class="tag-source">
  2738. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1905">line 1905</a>
  2739. </div>
  2740. </div>
  2741. </dt>
  2742. <dd>
  2743. <div class="description">
  2744. <p>Test whether the input value is currently valid.</p>
  2745. </div>
  2746. <table class="params">
  2747. <thead>
  2748. <tr>
  2749. <th>Name</th>
  2750. <th>Type</th>
  2751. <th class="last">Description</th>
  2752. </tr>
  2753. </thead>
  2754. <tbody>
  2755. <tr>
  2756. <td class="name"><code>section_id</code></td>
  2757. <td class="type">
  2758. <span class="param-type">string</span>
  2759. </td>
  2760. <td class="description last">
  2761. <p>The configuration section ID</p></td>
  2762. </tr>
  2763. </tbody>
  2764. </table>
  2765. <dl class="details">
  2766. </dl>
  2767. <h5>Returns:</h5>
  2768. <table class="params">
  2769. <thead>
  2770. <tr>
  2771. <th>Type</th>
  2772. <th class="last">Description</th>
  2773. </tr>
  2774. </thead>
  2775. <tbody>
  2776. <tr>
  2777. <td class="type">
  2778. boolean
  2779. </td>
  2780. <td class="description last">Returns <code>true</code> if the input value currently is valid, otherwise it
  2781. returns <code>false</code>.</td>
  2782. </tr>
  2783. </tbody>
  2784. </table>
  2785. </dd>
  2786. <dt>
  2787. <div class="nameContainer">
  2788. <h4 class="name" id="load">
  2789. load<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{*|Promise.&lt;*>}</span>
  2790. </h4>
  2791. <div class="tag-source">
  2792. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1761">line 1761</a>
  2793. </div>
  2794. </div>
  2795. </dt>
  2796. <dd>
  2797. <div class="description">
  2798. <p>Load the underlying configuration value.</p>
  2799. <p>The default implementation of this method reads and returns the
  2800. underlying UCI option value (or the related JavaScript property for
  2801. <code>JSONMap</code> instances). It may be overwritten by user code to load data
  2802. from nonstandard sources.</p>
  2803. </div>
  2804. <table class="params">
  2805. <thead>
  2806. <tr>
  2807. <th>Name</th>
  2808. <th>Type</th>
  2809. <th class="last">Description</th>
  2810. </tr>
  2811. </thead>
  2812. <tbody>
  2813. <tr>
  2814. <td class="name"><code>section_id</code></td>
  2815. <td class="type">
  2816. <span class="param-type">string</span>
  2817. </td>
  2818. <td class="description last">
  2819. <p>The configuration section ID</p></td>
  2820. </tr>
  2821. </tbody>
  2822. </table>
  2823. <dl class="details">
  2824. </dl>
  2825. <h5>Throws:</h5>
  2826. <dl>
  2827. <dt>
  2828. <div class="param-desc">
  2829. <p>Throws a <code>TypeError</code> exception when no <code>section_id</code> was specified.</p>
  2830. </div>
  2831. </dt>
  2832. <dt>
  2833. <dl>
  2834. <dt>
  2835. Type
  2836. </dt>
  2837. <dd>
  2838. <span class="param-type">TypeError</span>
  2839. </dd>
  2840. </dl>
  2841. </dt>
  2842. </dl>
  2843. <h5>Returns:</h5>
  2844. <table class="params">
  2845. <thead>
  2846. <tr>
  2847. <th>Type</th>
  2848. <th class="last">Description</th>
  2849. </tr>
  2850. </thead>
  2851. <tbody>
  2852. <tr>
  2853. <td class="type">
  2854. *
  2855. |
  2856. Promise.&lt;*>
  2857. </td>
  2858. <td class="description last">Returns the configuration value to initialize the option element with.
  2859. The return value of this function is filtered through <code>Promise.resolve()</code>
  2860. so it may return promises if overridden by user code.</td>
  2861. </tr>
  2862. </tbody>
  2863. </table>
  2864. </dd>
  2865. <dt>
  2866. <div class="nameContainer">
  2867. <h4 class="name" id="parse">
  2868. parse<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;void>}</span>
  2869. </h4>
  2870. <div class="tag-source">
  2871. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1964">line 1964</a>
  2872. </div>
  2873. </div>
  2874. </dt>
  2875. <dd>
  2876. <div class="description">
  2877. <p>Parse the option element input.</p>
  2878. <p>The function is invoked when the <code>parse()</code> method has been invoked on
  2879. the parent form and triggers input value reading and validation.</p>
  2880. </div>
  2881. <table class="params">
  2882. <thead>
  2883. <tr>
  2884. <th>Name</th>
  2885. <th>Type</th>
  2886. <th class="last">Description</th>
  2887. </tr>
  2888. </thead>
  2889. <tbody>
  2890. <tr>
  2891. <td class="name"><code>section_id</code></td>
  2892. <td class="type">
  2893. <span class="param-type">string</span>
  2894. </td>
  2895. <td class="description last">
  2896. <p>The configuration section ID</p></td>
  2897. </tr>
  2898. </tbody>
  2899. </table>
  2900. <dl class="details">
  2901. </dl>
  2902. <h5>Returns:</h5>
  2903. <table class="params">
  2904. <thead>
  2905. <tr>
  2906. <th>Type</th>
  2907. <th class="last">Description</th>
  2908. </tr>
  2909. </thead>
  2910. <tbody>
  2911. <tr>
  2912. <td class="type">
  2913. Promise.&lt;void>
  2914. </td>
  2915. <td class="description last">Returns a promise resolving once the input value has been read and
  2916. validated or rejecting in case the input value does not meet the
  2917. validation constraints.</td>
  2918. </tr>
  2919. </tbody>
  2920. </table>
  2921. </dd>
  2922. <dt>
  2923. <div class="nameContainer">
  2924. <h4 class="name" id="remove">
  2925. remove<span class="signature">(section_id)</span>
  2926. </h4>
  2927. <div class="tag-source">
  2928. <a href="form.js.html">form.js</a>, <a href="form.js.html#line2034">line 2034</a>
  2929. </div>
  2930. </div>
  2931. </dt>
  2932. <dd>
  2933. <div class="description">
  2934. <p>Remove the corresponding value from the configuration.</p>
  2935. <p>This function is invoked upon saving the parent form when the option
  2936. element has been hidden due to unsatisfied dependencies or when the
  2937. user cleared the input value and the option is marked optional.</p>
  2938. <p>The default implementation simply removes the associated option from the
  2939. UCI configuration (or the associated JavaScript object property in
  2940. case of <code>JSONMap</code> forms). It may be overwritten by user code to
  2941. implement alternative removal logic, e.g. to retain the original value.</p>
  2942. </div>
  2943. <table class="params">
  2944. <thead>
  2945. <tr>
  2946. <th>Name</th>
  2947. <th>Type</th>
  2948. <th class="last">Description</th>
  2949. </tr>
  2950. </thead>
  2951. <tbody>
  2952. <tr>
  2953. <td class="name"><code>section_id</code></td>
  2954. <td class="type">
  2955. <span class="param-type">string</span>
  2956. </td>
  2957. <td class="description last">
  2958. <p>The configuration section ID</p></td>
  2959. </tr>
  2960. </tbody>
  2961. </table>
  2962. <dl class="details">
  2963. </dl>
  2964. </dd>
  2965. <dt>
  2966. <div class="nameContainer inherited">
  2967. <h4 class="name" id="render">
  2968. <span class="inherited"><a href="LuCI.form.AbstractElement.html#render">inherited</a></span>
  2969. <span class="type-signature ">abstract</span>render<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Node|Promise.&lt;Node>}</span>
  2970. </h4>
  2971. <div class="tag-source">
  2972. <a href="form.js.html">form.js</a>, <a href="form.js.html#line246">line 246</a>
  2973. </div>
  2974. </div>
  2975. </dt>
  2976. <dd>
  2977. <div class="description">
  2978. <p>Render the form element.</p>
  2979. <p>The <code>render()</code> function recursively walks the form element tree and
  2980. renders the markup for each element, returning the assembled DOM tree.</p>
  2981. </div>
  2982. <dl class="details">
  2983. </dl>
  2984. <h5>Returns:</h5>
  2985. <table class="params">
  2986. <thead>
  2987. <tr>
  2988. <th>Type</th>
  2989. <th class="last">Description</th>
  2990. </tr>
  2991. </thead>
  2992. <tbody>
  2993. <tr>
  2994. <td class="type">
  2995. Node
  2996. |
  2997. Promise.&lt;Node>
  2998. </td>
  2999. <td class="description last">May return a DOM Node or a promise resolving to a DOM node containing
  3000. the form element's markup, including the markup of any child elements.</td>
  3001. </tr>
  3002. </tbody>
  3003. </table>
  3004. </dd>
  3005. <dt>
  3006. <div class="nameContainer inherited">
  3007. <h4 class="name" id="stripTags">
  3008. <span class="inherited"><a href="LuCI.form.AbstractElement.html#stripTags">inherited</a></span>
  3009. stripTags<span class="signature">(input)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string}</span>
  3010. </h4>
  3011. <div class="tag-source">
  3012. <a href="form.js.html">form.js</a>, <a href="form.js.html#line286">line 286</a>
  3013. </div>
  3014. </div>
  3015. </dt>
  3016. <dd>
  3017. <div class="description">
  3018. <p>Strip any HTML tags from the given input string.</p>
  3019. </div>
  3020. <table class="params">
  3021. <thead>
  3022. <tr>
  3023. <th>Name</th>
  3024. <th>Type</th>
  3025. <th class="last">Description</th>
  3026. </tr>
  3027. </thead>
  3028. <tbody>
  3029. <tr>
  3030. <td class="name"><code>input</code></td>
  3031. <td class="type">
  3032. <span class="param-type">string</span>
  3033. </td>
  3034. <td class="description last">
  3035. <p>The input string to clean.</p></td>
  3036. </tr>
  3037. </tbody>
  3038. </table>
  3039. <dl class="details">
  3040. </dl>
  3041. <h5>Returns:</h5>
  3042. <table class="params">
  3043. <thead>
  3044. <tr>
  3045. <th>Type</th>
  3046. <th class="last">Description</th>
  3047. </tr>
  3048. </thead>
  3049. <tbody>
  3050. <tr>
  3051. <td class="type">
  3052. string
  3053. </td>
  3054. <td class="description last">The cleaned input string with HTML removes removed.</td>
  3055. </tr>
  3056. </tbody>
  3057. </table>
  3058. </dd>
  3059. <dt>
  3060. <div class="nameContainer">
  3061. <h4 class="name" id="textvalue">
  3062. textvalue<span class="signature">(section_id)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string}</span>
  3063. </h4>
  3064. <div class="tag-source">
  3065. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1859">line 1859</a>
  3066. </div>
  3067. </div>
  3068. </dt>
  3069. <dd>
  3070. <div class="description">
  3071. <p>Obtain a textual input representation.</p>
  3072. <p>The default implementation of this method returns the HTML escaped
  3073. current input value of the underlying
  3074. <a href="LuCI.ui.AbstractElement.html"><code>LuCI.ui</code></a> widget. User code or specific
  3075. option element implementations may overwrite this function to apply a
  3076. different logic, e.g. to return <code>Yes</code> or <code>No</code> depending on the checked
  3077. state of checkbox elements.</p>
  3078. </div>
  3079. <table class="params">
  3080. <thead>
  3081. <tr>
  3082. <th>Name</th>
  3083. <th>Type</th>
  3084. <th class="last">Description</th>
  3085. </tr>
  3086. </thead>
  3087. <tbody>
  3088. <tr>
  3089. <td class="name"><code>section_id</code></td>
  3090. <td class="type">
  3091. <span class="param-type">string</span>
  3092. </td>
  3093. <td class="description last">
  3094. <p>The configuration section ID</p></td>
  3095. </tr>
  3096. </tbody>
  3097. </table>
  3098. <dl class="details">
  3099. </dl>
  3100. <h5>Throws:</h5>
  3101. <dl>
  3102. <dt>
  3103. <div class="param-desc">
  3104. <p>Throws a <code>TypeError</code> exception when no <code>section_id</code> was specified.</p>
  3105. </div>
  3106. </dt>
  3107. <dt>
  3108. <dl>
  3109. <dt>
  3110. Type
  3111. </dt>
  3112. <dd>
  3113. <span class="param-type">TypeError</span>
  3114. </dd>
  3115. </dl>
  3116. </dt>
  3117. </dl>
  3118. <h5>Returns:</h5>
  3119. <table class="params">
  3120. <thead>
  3121. <tr>
  3122. <th>Type</th>
  3123. <th class="last">Description</th>
  3124. </tr>
  3125. </thead>
  3126. <tbody>
  3127. <tr>
  3128. <td class="type">
  3129. string
  3130. </td>
  3131. <td class="description last">Returns the text representation of the current input value.</td>
  3132. </tr>
  3133. </tbody>
  3134. </table>
  3135. </dd>
  3136. <dt>
  3137. <div class="nameContainer inherited">
  3138. <h4 class="name" id="titleFn">
  3139. <span class="inherited"><a href="LuCI.form.AbstractElement.html#titleFn">inherited</a></span>
  3140. titleFn<span class="signature">(property, fmt_args)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string|null}</span>
  3141. </h4>
  3142. <div class="tag-source">
  3143. <a href="form.js.html">form.js</a>, <a href="form.js.html#line320">line 320</a>
  3144. </div>
  3145. </div>
  3146. </dt>
  3147. <dd>
  3148. <div class="description">
  3149. <p>Format the given named property as title string.</p>
  3150. <p>This function looks up the given named property and formats its value
  3151. suitable for use as element caption or description string. It also
  3152. strips any HTML tags from the result.</p>
  3153. <p>If the property value is a string, it is passed to <code>String.format()</code>
  3154. along with any additional parameters passed to <code>titleFn()</code>.</p>
  3155. <p>If the property value is a function, it is invoked with any additional
  3156. <code>titleFn()</code> parameters as arguments and the obtained return value is
  3157. converted to a string.</p>
  3158. <p>In all other cases, <code>null</code> is returned.</p>
  3159. </div>
  3160. <table class="params">
  3161. <thead>
  3162. <tr>
  3163. <th>Name</th>
  3164. <th>Type</th>
  3165. <th class="last">Description</th>
  3166. </tr>
  3167. </thead>
  3168. <tbody>
  3169. <tr>
  3170. <td class="name"><code>property</code></td>
  3171. <td class="type">
  3172. <span class="param-type">string</span>
  3173. </td>
  3174. <td class="description last">
  3175. <p>The name of the element property to use.</p></td>
  3176. </tr>
  3177. <tr>
  3178. <td class="name"><code>fmt_args</code></td>
  3179. <td class="type">
  3180. <span class="param-type">*</span>
  3181. </td>
  3182. <td class="description last">
  3183. <span class="repeatable">repeatable</span>
  3184. <p>Extra values to format the title string with.</p></td>
  3185. </tr>
  3186. </tbody>
  3187. </table>
  3188. <dl class="details">
  3189. </dl>
  3190. <h5>Returns:</h5>
  3191. <table class="params">
  3192. <thead>
  3193. <tr>
  3194. <th>Type</th>
  3195. <th class="last">Description</th>
  3196. </tr>
  3197. </thead>
  3198. <tbody>
  3199. <tr>
  3200. <td class="type">
  3201. string
  3202. |
  3203. null
  3204. </td>
  3205. <td class="description last">The formatted title string or <code>null</code> if the property did not exist or
  3206. was neither a string nor a function.</td>
  3207. </tr>
  3208. </tbody>
  3209. </table>
  3210. </dd>
  3211. <dt>
  3212. <div class="nameContainer">
  3213. <h4 class="name" id="validate">
  3214. <span class="type-signature ">abstract</span>validate<span class="signature">(section_id, value)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{*}</span>
  3215. </h4>
  3216. <div class="tag-source">
  3217. <a href="form.js.html">form.js</a>, <a href="form.js.html#line1891">line 1891</a>
  3218. </div>
  3219. </div>
  3220. </dt>
  3221. <dd>
  3222. <div class="description">
  3223. <p>Apply custom validation logic.</p>
  3224. <p>This method is invoked whenever incremental validation is performed on
  3225. the user input, e.g. on keyup or blur events.</p>
  3226. <p>The default implementation of this method does nothing and always
  3227. returns <code>true</code>. User code may overwrite this method to provide
  3228. additional validation logic which is not covered by data type
  3229. constraints.</p>
  3230. </div>
  3231. <table class="params">
  3232. <thead>
  3233. <tr>
  3234. <th>Name</th>
  3235. <th>Type</th>
  3236. <th class="last">Description</th>
  3237. </tr>
  3238. </thead>
  3239. <tbody>
  3240. <tr>
  3241. <td class="name"><code>section_id</code></td>
  3242. <td class="type">
  3243. <span class="param-type">string</span>
  3244. </td>
  3245. <td class="description last">
  3246. <p>The configuration section ID</p></td>
  3247. </tr>
  3248. <tr>
  3249. <td class="name"><code>value</code></td>
  3250. <td class="type">
  3251. <span class="param-type">*</span>
  3252. </td>
  3253. <td class="description last">
  3254. <p>The value to validate</p></td>
  3255. </tr>
  3256. </tbody>
  3257. </table>
  3258. <dl class="details">
  3259. </dl>
  3260. <h5>Returns:</h5>
  3261. <table class="params">
  3262. <thead>
  3263. <tr>
  3264. <th>Type</th>
  3265. <th class="last">Description</th>
  3266. </tr>
  3267. </thead>
  3268. <tbody>
  3269. <tr>
  3270. <td class="type">
  3271. *
  3272. </td>
  3273. <td class="description last">The method shall return <code>true</code> to accept the given value. Any other
  3274. return value is treated as failure, converted to a string and displayed
  3275. as error message to the user.</td>
  3276. </tr>
  3277. </tbody>
  3278. </table>
  3279. </dd>
  3280. <dt>
  3281. <div class="nameContainer">
  3282. <h4 class="name" id="write">
  3283. write<span class="signature">(section_id, formvalue)</span>
  3284. </h4>
  3285. <div class="tag-source">
  3286. <a href="form.js.html">form.js</a>, <a href="form.js.html#line2011">line 2011</a>
  3287. </div>
  3288. </div>
  3289. </dt>
  3290. <dd>
  3291. <div class="description">
  3292. <p>Write the current input value into the configuration.</p>
  3293. <p>This function is invoked upon saving the parent form when the option
  3294. element is valid and when its input value has been changed compared to
  3295. the initial value returned by
  3296. <a href="LuCI.form.AbstractValue.html#cfgvalue"><code>cfgvalue()</code></a>.</p>
  3297. <p>The default implementation simply sets the given input value in the
  3298. UCI configuration (or the associated JavaScript object property in
  3299. case of <code>JSONMap</code> forms). It may be overwritten by user code to
  3300. implement alternative save logic, e.g. to transform the input value
  3301. before it is written.</p>
  3302. </div>
  3303. <table class="params">
  3304. <thead>
  3305. <tr>
  3306. <th>Name</th>
  3307. <th>Type</th>
  3308. <th class="last">Description</th>
  3309. </tr>
  3310. </thead>
  3311. <tbody>
  3312. <tr>
  3313. <td class="name"><code>section_id</code></td>
  3314. <td class="type">
  3315. <span class="param-type">string</span>
  3316. </td>
  3317. <td class="description last">
  3318. <p>The configuration section ID</p></td>
  3319. </tr>
  3320. <tr>
  3321. <td class="name"><code>formvalue</code></td>
  3322. <td class="type">
  3323. <span class="param-type">string</span>
  3324. |
  3325. <span class="param-type">Array.&lt;string></span>
  3326. </td>
  3327. <td class="description last">
  3328. <p>The input value to write.</p></td>
  3329. </tr>
  3330. </tbody>
  3331. </table>
  3332. <dl class="details">
  3333. </dl>
  3334. </dd>
  3335. </dl>
  3336. </article>
  3337. </section>
  3338. <footer>
  3339. Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Thu Aug 06 2020 17:58:02 GMT+0200 (Central European Summer Time)
  3340. </footer>
  3341. </div>
  3342. </div>
  3343. <script>prettyPrint();</script>
  3344. <script src="scripts/jaguar.js"></script>
  3345. </body>
  3346. </html>